2021-06-26 20:57:55 +02:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace TINK.Repository.Response
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
[DataContract]
|
|
|
|
|
public class CopriVersion
|
|
|
|
|
{
|
|
|
|
|
[DataMember]
|
|
|
|
|
public string copri_version { get; private set; }
|
|
|
|
|
}
|
2021-06-26 20:57:55 +02:00
|
|
|
|
}
|