Files
Toolkit2/Toolkit.Foundation/ISerialContext.cs
T
2025-02-10 10:10:16 +00:00

13 lines
256 B
C#

namespace Toolkit.Foundation;
public interface ISerialContext<TReader, TRead, TEvent> :
ISerialContext
where TReader : SerialReader<TRead>
where TEvent : SerialEventArgs<TRead>, new();
public interface ISerialContext
{
bool Open();
}