8 lines
236 B
C#
8 lines
236 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface ISerialFactory
|
|
{
|
|
ISerialContext<TSerialReader, TContent> Create<TSerialReader, TContent>(ISerialConfiguration configuration)
|
|
where TSerialReader : SerialReader<TContent>;
|
|
}
|