SocketEntity.cs 488 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Net;
  6. using System.Net.Sockets;
  7. using System.Threading;
  8. using System.IO;
  9. namespace DllFileSoc
  10. {
  11. [Serializable]
  12. public class SocketEntity
  13. {
  14. public string MacCode { get; set; }
  15. public string FileName { get; set; }
  16. public string UserId { get; set; }
  17. public string Remark { get; set; }
  18. public byte[] filebytes { get; set; }
  19. }
  20. }