namespace Yuna.OauthServer.Model { public class Client { public Client(string clientName, int clientId, string secret, string clientUri, string redirectUri) { ClientName = clientName; ClientId = clientId; ClientSecret = secret; ClientUri = clientUri; RedirectUri = redirectUri; } public string ClientName { get; set; } public int ClientId { get; set; } public string ClientSecret { get; set; } //public string ClientType { get; set; } //public List GrantType { get; set; } public bool IsActive { get; set; } = false; //public List AllowedScopes { get; set; } public string? ClientUri { get; set; } public string RedirectUri { get; set; } } }