RecTxViewModel.cs 798 B

12345678910111213141516171819202122232425262728293031323334
  1. using DW5S.ViewModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace DW5S.ViewModel
  10. {
  11. /// <summary>
  12. /// 天线信息
  13. /// </summary>
  14. public class RecTxViewModel : BaseViewModel<int>
  15. {
  16. [Display(Name = "接收站名称")]
  17. public string Name { get; set; }
  18. [Display(Name = "经度°")]
  19. public double Lon { get; set; }
  20. [Display(Name = "纬度°")]
  21. public double Lat { get; set; }
  22. [Display(Name = "备注")]
  23. public string Remark { get; set; }
  24. [Display(Name = "状态")]
  25. public bool Enable { get; set; }
  26. }
  27. }