using System; namespace InABox.Logikal { public interface ILogikalElevation { Guid ID { get; set; } string Name { get; set; } string Description { get; set; } string Size { get; set; } byte[] Thumbnail { get; set; } } }