DeviceInfoModel.cs 454 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shaker.Model
  7. {
  8. public class DeviceInfoModel:BaseModel
  9. {
  10. public string Name = string.Empty;
  11. public string SN = string.Empty;
  12. public string IP = "127.0.0.1";
  13. public int Port = 5555;
  14. public override object Clone()
  15. {
  16. return this.CloneBase();
  17. }
  18. }
  19. }