using System; using InABox.Integration.Awg; namespace InABox.Integration.Logikal { public interface ILogikalElevationSummary : IAwgElevation { Guid ID { get; set; } string Description { get; set; } string Size { get; set; } byte[] Thumbnail { get; set; } } }