ILogikalElevationSummary.cs 315 B

1234567891011121314151617
  1. using System;
  2. using InABox.Integration.Awg;
  3. namespace InABox.Integration.Logikal
  4. {
  5. public interface ILogikalElevationSummary : IAwgElevation
  6. {
  7. Guid ID { get; set; }
  8. string Description { get; set; }
  9. string Size { get; set; }
  10. byte[] Thumbnail { get; set; }
  11. }
  12. }