using System; using System.Collections.Generic; using System.Linq; using System.Text; using Prism.Mvvm; using System.Threading.Tasks; namespace DefaultEdit.Model { public class RfidInfo:BindableBase { private string _Rfid; private int _StationId; private string _ModelsInfo; private string _State; private DateTime _StartTime; public string Rfid { get => _Rfid; set { SetProperty(ref _Rfid, value); } } public int StationId { get => _StationId; set { SetProperty(ref _StationId, value); } } public string ModelsInfo { get => _ModelsInfo; set { SetProperty(ref _ModelsInfo, value); } } public string State { get => _State; set { SetProperty(ref _State, value); } } public DateTime StartTime { get => _StartTime; set { SetProperty(ref _StartTime, value); } } } }