SocketFileEntity.cs 538 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllFileSoc
  5. {
  6. [Serializable]
  7. public class SocketFileEntity
  8. {
  9. public string ConnetIp { get; set; }
  10. public int ConnetPort { get; set; }
  11. public string ClientFilePath { get; set; }
  12. public string FileName { get; set; }
  13. public string Status { get; set; }
  14. public string Remark { get; set; }
  15. public string ServerFileFullPath { get; set; }
  16. public int SetTimeOut { get; set; }
  17. }
  18. }