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.

28 lines
793 B

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; }
}
}