using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SKMC.Api.Machine.Model { public class MachineSlaveError : BindableBase { private string _vendorId; private string _errorCode; private int _errorvalue; private int _assist‌Value; private string _faultName; private string _reason; private string _confirmMethod; private string _handlingMeasures; private string _faultRange; public string VendorId { get { return _vendorId; } set { _vendorId = value; RaisePropertyChanged(); } } public string ErrorCode { get { return _errorCode; } set { _errorCode = value; RaisePropertyChanged(); } } public int ErrorValue { get { return _errorvalue; } set { _errorvalue = value; RaisePropertyChanged(); } } public int Assist‌Value { get { return _assist‌Value; } set { _assist‌Value = value; RaisePropertyChanged(); } } public string FaultName { get { return _faultName; } set { _faultName = value; RaisePropertyChanged(); } } public string Reason { get { return _reason; } set { _reason = value; RaisePropertyChanged(); } } public string ConfirmMethod { get { return _confirmMethod; } set { _confirmMethod = value; RaisePropertyChanged(); } } public string HandlingMeasures { get { return _handlingMeasures; } set { _handlingMeasures = value; RaisePropertyChanged(); } } public string FaultRange { get { return _faultRange; } set { _faultRange = value; RaisePropertyChanged(); } } } }