using System; using InABox.Core; namespace PRSDesktop { public class GroupTokenItem : BaseObject { public Guid ID { get; set; } public string Group { get; set; } public string Code { get; set; } public string Description { get; set; } public bool Default { get; set; } public bool HasValue { get; set; } public bool Value { get; set; } public override string ToString() { return string.Format("{0}: Default: {1} HasValue: {2} Value: {3}", Code, Default ? "true" : "false", HasValue ? "true" : "false", Value ? "true" : "false"); } } }