Stephane@243: using System;
Stephane@243: using System.Collections.Generic;
Stephane@243: using System.Linq;
Stephane@243: using System.Runtime.Serialization;
Stephane@243: using System.Text;
Stephane@243: using System.Threading.Tasks;
Stephane@243:
Stephane@243: namespace SharpLib.Ear
Stephane@243: {
Stephane@243: ///
Stephane@243: /// ComboBox property
Stephane@243: ///
Stephane@243: [DataContract]
Stephane@243: [AttributeObject(Id = "Property.ComboBox", Name = "ComboBox", Description = "ComboBox property.")]
Stephane@243: public class PropertyComboBox : Object
Stephane@243: {
Stephane@243: public IList Items { get; set; } = new List();
Stephane@243:
Stephane@243: [DataMember]
Stephane@243: public string CurrentItem { get; set; }
Stephane@243: }
Stephane@243: }