using System; using System.Collections.Generic; using InABox.Core; using Xamarin.Forms; namespace InABox.Mobile { public interface ILookupModel : IModel { void Select(ILookupShell shell); public Color Selected { get; set; } public Color Background { get; set; } } }