Files
2025-02-07 09:03:02 +00:00

7 lines
123 B
C#

namespace Toolkit.Foundation;
public interface ISerialWriter
{
void Write(byte[] buffer, int offset, int count);
}