123456789101112131415161718 |
- using Prism.Mvvm;
- namespace LogoForceTestApp.Modules.MainModule.ViewModels
- {
- public class ParamDto : BindableBase
- {
- public string fixture_id { get; set; }
- public string cavity_id { get; set; }
- public string line_id { get; set; }
- public string station_id { get; set; }
-
- public string station_vendor { get; set; }
- public string test { get; set; }
- public string OpId { get; set; }
- public string UpperLimit { get; set; }
- public string DownLimit { get; set; }
- }
- }
|