ClientEntry.cs 393 B

12345678910111213141516
  1. namespace DhcpServer
  2. {
  3. internal class ClientEntry
  4. {
  5. public bool Enable { get; set; }
  6. public string IpAddress { get; set; }
  7. public string SubNetMask { get; set; }
  8. public string GateWay { get; set; }
  9. public string DnsServer { get; set; }
  10. public string BootFileName { get; set; }
  11. public string TftpServer { get; set; }
  12. }
  13. }