using System; using InABox.Core; using Xamarin.Forms; namespace InABox.Mobile { public interface ILookupShell { Guid ID { get; } String Code { get; } String Description { get; } bool Selected { get; set; } Color Colour { get; } } }