sharee.bike-App/TINKLib/Model/Stations/StationNS/Operator/IData.cs
2023-04-19 12:14:14 +02:00

23 lines
564 B
C#

using Xamarin.Forms;
namespace TINK.Model.Stations.StationNS.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; }
}
}