IDocumentShell.cs 231 B

12345678910111213
  1. using System;
  2. using Xamarin.Forms;
  3. namespace PRS.Mobile
  4. {
  5. public interface IDocumentShell
  6. {
  7. Guid EntityID { get; }
  8. Guid ID { get; }
  9. String FileName { get; }
  10. byte[] Thumbnail { get; }
  11. }
  12. }