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 Columns { get; set; } = new List(); public List Rows { get; set; } = new List(); }