mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
12 lines
219 B
C#
12 lines
219 B
C#
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace TINK.Repository.Response
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class CopriVersion
|
|||
|
{
|
|||
|
[DataMember]
|
|||
|
public string copri_version { get; private set; }
|
|||
|
}
|
|||
|
}
|