2023-04-19 12:14:14 +02:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
2024-04-09 12:53:23 +02:00
|
|
|
namespace ShareeBike.Repository.Response.Stations.Station
|
2023-04-19 12:14:14 +02:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Holds info about operator data.
|
|
|
|
/// </summary>
|
|
|
|
[DataContract]
|
|
|
|
public class OperatorData
|
|
|
|
{
|
|
|
|
[DataMember]
|
|
|
|
public string operator_name { get; private set; }
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
public string operator_phone { get; private set; }
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
public string operator_hours { get; private set; }
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
public string operator_email { get; private set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
public string operator_color { get; private set; }
|
|
|
|
}
|
|
|
|
}
|