ILookupModel.cs 307 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using InABox.Core;
  4. using Xamarin.Forms;
  5. namespace InABox.Mobile
  6. {
  7. public interface ILookupModel : IModel
  8. {
  9. void Select(ILookupShell shell);
  10. public Color Selected { get; set; }
  11. public Color Background { get; set; }
  12. }
  13. }