using System.Collections.Generic; using System.Linq; namespace RosettaUI { public class DropdownElement : FieldBaseElement { public readonly List options; public DropdownElement(LabelElement label, IBinder binder, IEnumerable options) : base(label, binder) { this.options = options.ToList(); } } }