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; } } }