mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
16 lines
401 B
C#
16 lines
401 B
C#
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace TINK.Model.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; }
|
|||
|
}
|
|||
|
}
|