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