ILookupShell.cs 284 B

123456789101112131415
  1. using System;
  2. using InABox.Core;
  3. using Xamarin.Forms;
  4. namespace InABox.Mobile
  5. {
  6. public interface ILookupShell
  7. {
  8. Guid ID { get; }
  9. String Code { get; }
  10. String Description { get; }
  11. bool Selected { get; set; }
  12. Color Colour { get; }
  13. }
  14. }