ConditionDto.cs 209 B

1234567891011
  1. namespace Pas.ScadaService.Model
  2. {
  3. public class ConditionDto
  4. {
  5. public string Name { get; set; }
  6. public string Value { get; set; }
  7. public string Change { get; set; }
  8. }
  9. }