You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
716 B

using System;
using System.Collections.Generic;
using System.Text;
namespace ReZero.Configuration
{
public class ReZeroJwt
{
public bool? Enable { get; set; }
public string? Secret { get; set; }
public string? UserTableName { get; set; }
public string? UserNameFieldName { get; set; }
public string? PasswordFieldName { get; set; }
public long? Expires { get; set; }
public List<ClaimItem>? Claim { get; set; }
public bool? DisableSystemInterface { get; set; }
}
public class ClaimItem
{
public string? Key { get; set; }
public string? FieldName { get; set; }
public string? Type { get; set; }
}
}