| 1234567891011121314151617181920212223242526272829303132333435 |
-
- using SKMC.Api.Device.Config;
- namespace SKMC.Api.Machine.Config
- {
- /// <summary>
- /// 机台目录配置
- /// </summary>
- public class MachineCatalogConfig : ConfigBase
- {
- public bool IsChecked { get; set; }
- }
- /// <summary>
- /// 机台参数配置
- /// </summary>
- public class MachineParamConfig : ConfigBase
- {
- private string _group;
- public string Group
- {
- get { return _group; }
- set { _group = value; RaisePropertyChanged(); }
- }
- private string _value;
- public string Value
- {
- get { return _value; }
- set { _value = value; RaisePropertyChanged(); }
- }
- }
- }
|