mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
23 lines
625 B
C#
23 lines
625 B
C#
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace TINK.Model.Station.Operator
|
|||
|
{
|
|||
|
public interface IData
|
|||
|
{
|
|||
|
/// <summary> Name of the operator.</summary>
|
|||
|
string Name { get; }
|
|||
|
|
|||
|
/// <summary> Support phone number of the operator.</summary>
|
|||
|
string PhoneNumberText { get; }
|
|||
|
|
|||
|
/// <summary> Office times when support is available.</summary>
|
|||
|
string Hours { get; }
|
|||
|
|
|||
|
/// <summary> Support mails address of the operator.</summary>
|
|||
|
string MailAddressText { get; }
|
|||
|
|
|||
|
/// <summary> Color of the operator (operator specific skin)</summary>
|
|||
|
Color? Color { get; }
|
|||
|
}
|
|||
|
}
|