using InABox.Core; namespace Comal.Classes { public class QuoteDiagramArea : QuoteDiagramEntity { [ColorEditor] [EditorSequence(10)] public string FillColor { get; set; } = "#AAAAAA"; [ColorEditor] [EditorSequence(11)] public string LineColor { get; set; } = "#000000"; public QuoteTakeOffUnitLink TakeoffUnit { get; set; } } }