IEntityDocumentShell.cs 281 B

12345678910111213
  1. using System;
  2. namespace InABox.Mobile
  3. {
  4. public interface IEntityDocumentShell : IShell
  5. {
  6. Guid ID { get; }
  7. Guid ParentID { get; set; }
  8. Guid DocumentID { get; set; }
  9. String FileName { get; set; }
  10. byte[] Thumbnail { get; set; }
  11. }
  12. }