12345678910111213141516171819 |
- using System;
- using InABox.Integration.Awg;
- namespace InABox.Integration.V6
- {
- public interface IV6Elevation : IAwgElevation
- {
- Guid ID { get; set; }
-
- string Name { get; set; }
- string Description { get; set; }
- string Size { get; set; }
- byte[] Thumbnail { get; set; }
-
- }
- }
|