RfidInfo.cs 860 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Prism.Mvvm;
  6. using System.Threading.Tasks;
  7. namespace DefaultEdit.Model
  8. {
  9. public class RfidInfo:BindableBase
  10. {
  11. private string _Rfid;
  12. private int _StationId;
  13. private string _ModelsInfo;
  14. private string _State;
  15. private DateTime _StartTime;
  16. public string Rfid { get => _Rfid; set { SetProperty(ref _Rfid, value); } }
  17. public int StationId { get => _StationId; set { SetProperty(ref _StationId, value); } }
  18. public string ModelsInfo { get => _ModelsInfo; set { SetProperty(ref _ModelsInfo, value); } }
  19. public string State { get => _State; set { SetProperty(ref _State, value); } }
  20. public DateTime StartTime { get => _StartTime; set { SetProperty(ref _StartTime, value); } }
  21. }
  22. }