using Infrastructure.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Application.Domain.Entities { public class Client:BaseEntity { public string ClientId { get; set; } public string ClientName { get; set; } public string AllowedGrantTypes { get; set; } public string ClientSecrets { get; set; } public string AllowedScopes { get; set; } public bool RequirePkce { get; set; } public bool RequireClientSecret { get; set; } public string RedirectUris { get; set; } public string PostLogoutRedirectUris { get; set; } public string AllowedCorsOrigins { get; set; } public bool AllowOfflineAccess { get; set; } } }