sharee.bike-App/TINKLib/Repository/Response/ResponseBase.cs
2021-05-13 20:03:07 +02:00

33 lines
994 B
C#

using System.Runtime.Serialization;
namespace TINK.Model.Repository.Response
{
[DataContract]
public class ResponseBase
{
[DataMember]
public string response_state { get; private set; }
[DataMember]
public string response { get; private set; }
[DataMember]
public string response_text { get; private set; }
[DataMember]
public string authcookie { get; private set; }
[DataMember]
public string copri_version { get; private set; }
/// <summary> Textual description of response. </summary>
public new string ToString()
{
return $"Response state is \"{response_state ?? string.Empty}\", " +
$"auth cookie is \"{authcookie ?? string.Empty}\" and response is \"{response_text ?? string.Empty}\", " +
$"code \"{response ?? string.Empty}\"" +
$"response text \"{response_text ?? string.Empty}\".";
}
}
}