This commit is contained in:
Dan Clark
2025-02-09 13:51:25 +00:00
parent f2e501454e
commit 0afe621f59
22 changed files with 147 additions and 122 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
namespace Toolkit.Foundation;
public abstract class SerialReader<TContent>(Stream stream)
public abstract class SerialReader<TRead>(Stream stream)
{
public Stream Stream { get; } = stream;
public abstract IAsyncEnumerable<TContent> ReadAsync();
public abstract IAsyncEnumerable<TRead> ReadAsync();
}