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.
 
 
 
 
 
 

11 lines
377 B

namespace WTA.Shared.Authentication;
public class AuthenticateResult
{
public bool Succeeded { get; set; }
public bool Failed { get; set; }
public bool EnableColumnLimit { get; set; }
public bool EnableRowLimit { get; set; }
public List<string> Columns { get; set; } = new List<string>();
public List<string> Rows { get; set; } = new List<string>();
}