mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
22 lines
556 B
C#
22 lines
556 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; }
|
|
}
|
|
}
|