using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class DataEntryTagLink : EntityLink, IDataEntryTag { [LookupEditor(typeof(DataEntryTag))] public override Guid ID { get; set; } [TextBoxEditor(Editable = Editable.Hidden)] public string Name { get; set; } [ComboLookupEditor(typeof(PropertyClassLookups), Editable = Editable.Hidden)] public string AppliesTo { get; set; } } }