1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class SelectDto
- {
- public List<Option> Options = new List<Option>();
- }
- public class Option
- {
- public string Id { get; set; }
- public string Value { get; set; }
- }
- }
|