InPlaceSignalModel.cs 312 B

1234567891011121314
  1. namespace GCAS.Model
  2. {
  3. public class InPlaceSignalModel
  4. {
  5. public bool ACR1 { get; set; }
  6. public bool ACR2 { get; set; }
  7. public bool ACR3 { get; set; }
  8. public bool BCR1 { get; set; }
  9. public bool BCR2 { get; set; }
  10. public bool BCR3 { get; set; }
  11. }
  12. }