namespace Asb.Base.V2; public class UserToken { public ushort? Encryption { get; set; } public string HostName { get; set; } public ushort? IdType { get; set; } public string LocationId { get; set; } public string UserName { get; set; } public string Password { get; set; } public ushort? Validity { get; set; } public string JwtToken { get; set; } public byte[] SamlToken { get; set; } public byte[] X509Certificate { get; set; } }