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