2021-07-20 23:06:09 +02:00
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace TINK.Model.Station.Operator
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public interface IData
|
|
|
|
|
{
|
|
|
|
|
/// <summary> Name of the operator.</summary>
|
|
|
|
|
string Name { get; }
|
2021-07-20 23:06:09 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Support phone number of the operator.</summary>
|
|
|
|
|
string PhoneNumberText { get; }
|
2021-07-20 23:06:09 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Office times when support is available.</summary>
|
|
|
|
|
string Hours { get; }
|
2021-07-20 23:06:09 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Support mails address of the operator.</summary>
|
|
|
|
|
string MailAddressText { get; }
|
2021-07-20 23:06:09 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Color of the operator (operator specific skin)</summary>
|
|
|
|
|
Color? Color { get; }
|
|
|
|
|
}
|
2021-07-20 23:06:09 +02:00
|
|
|
|
}
|