Add Serials
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public abstract class SerialReader<TContent>(Stream stream)
|
||||
{
|
||||
public Stream Stream { get; } = stream;
|
||||
|
||||
public abstract IAsyncEnumerable<TContent> ReadAsync();
|
||||
}
|
||||
Reference in New Issue
Block a user