25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using BPA.Helper;
- using System.Collections.ObjectModel;
-
- namespace BPASmartClient.DosingSystem
- {
- public class DevicePar : NotifyBase
- {
- /// <summary>
- /// 配料设备参数
- /// </summary>
- public ObservableCollection<DeviceParModel> deviceParModels { get; set; } = new ObservableCollection<DeviceParModel>();
-
- public ObservableCollection<OutletInfoModel> OutletInfoModels { get; set; } = new ObservableCollection<OutletInfoModel>();
-
- public BasePar BaseParModel { get { return _mBaseParModel; } set { _mBaseParModel = value; OnPropertyChanged(); } }
- private BasePar _mBaseParModel = new BasePar();
-
- }
- }
|