mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
13 lines
285 B
C#
13 lines
285 B
C#
using System.Runtime.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ShareeBike.Repository.Response
|
|
{
|
|
[DataContract]
|
|
[JsonObject(ItemNullValueHandling = NullValueHandling.Ignore)]
|
|
public class CopriVersion
|
|
{
|
|
[DataMember]
|
|
public string copri_version { get; private set; }
|
|
}
|
|
}
|