sharee.bike-App/TINKLib/Repository/Response/AuthorizationResponse.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

20 lines
494 B
C#

using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
[DataContract]
public class AuthorizationResponse : ResponseBase
{
[DataMember]
public int debuglevel { get; private set; }
/// <summary> Holds the group of the bike (TINK, Konrad, ...).</summary>
[DataMember]
public string[] user_group { get; private set; }
/// <summary> Holds value of 0 if agb were not acknowledged.</summary>
[DataMember]
public string agb_checked { get; private set; }
}
}