SelectDto.cs 332 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Dtos
  5. {
  6. public class SelectDto
  7. {
  8. public List<Option> Options = new List<Option>();
  9. }
  10. public class Option
  11. {
  12. public string Id { get; set; }
  13. public string Value { get; set; }
  14. }
  15. }