1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllFileSoc
- {
- [Serializable]
- public class SocketFileEntity
- {
- public string ConnetIp { get; set; }
- public int ConnetPort { get; set; }
- public string ClientFilePath { get; set; }
- public string FileName { get; set; }
- public string Status { get; set; }
- public string Remark { get; set; }
- public string ServerFileFullPath { get; set; }
- public int SetTimeOut { get; set; }
- }
- }
|