IContentReceiver.cs 126 B

12345678
  1. namespace NetCore.ContentParse
  2. {
  3. public interface IContentReceiver
  4. {
  5. void AddContent(byte[] data);
  6. }
  7. }