using Xamarin.Forms; namespace TINK.Model.Station.Operator { public interface IData { /// Name of the operator. string Name { get; } /// Support phone number of the operator. string PhoneNumberText { get; } /// Office times when support is available. string Hours { get; } /// Support mails address of the operator. string MailAddressText { get; } /// Color of the operator (operator specific skin) Color? Color { get; } } }