using BPA.Helper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.Model
{
public class MixWinkModel:NotifyBase
{
private string _materialName;
public string materialName { get { return _materialName; } set { _materialName = value;OnPropertyChanged(); } }
///
/// 位置
///
private int _loc;
public int Loc { get { return _loc; } set { _loc = value;OnPropertyChanged(); } }
///
/// 停留时间
///
public int Time { get { return _time; } set { _time = value;OnPropertyChanged(); } }
private int _time;
}
}