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