IV6Elevation.cs 336 B

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