using System.Collections.Generic; using InABox.Core; using InABox.Integration.Logikal; namespace PRSDesktop.Integrations.Logikal; public class LogikalElevationDetail : LogikalElevationSummary, ILogikalElevationDetail { [NullEditor] public byte[]? Drawing { get; set; } [NullEditor] public IEnumerable Finishes { get; set; } [NullEditor] public IEnumerable Profiles { get; set; } [NullEditor] public IEnumerable Gaskets { get; set; } [NullEditor] public IEnumerable Components { get; set; } [NullEditor] public IEnumerable Glass { get; set; } [NullEditor] public IEnumerable Labour { get; set; } [NullEditor] public byte[] ExcelData { get; set; } [NullEditor] public byte[] SQLiteData { get; set; } }