123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Net;
- using System.Net.Sockets;
- using System.Threading;
- using System.IO;
- namespace DllFileSoc
- {
- [Serializable]
- public class SocketEntity
- {
- public string MacCode { get; set; }
- public string FileName { get; set; }
- public string UserId { get; set; }
- public string Remark { get; set; }
- public byte[] filebytes { get; set; }
- }
- }
|