mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
14 lines
285 B
C#
14 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; }
|
||
|
}
|
||
|
}
|