ILookupShell.cs 214 B

123456789101112
  1. using System;
  2. using InABox.Core;
  3. using Xamarin.Forms;
  4. namespace InABox.Mobile
  5. {
  6. public interface ILookupShell : IShell
  7. {
  8. String LookupCode { get; }
  9. String LookupDescription { get; }
  10. }
  11. }