using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KonSoft.Shared.DbMigrator.OpenIddict { public class OpenIddictApplicationOptions { public string Name { get; set; } public string Type { get; set; } public string ConsentType { get; set; } public string DisplayName { get; set; } public string? Secret { get; set; } public List GrantTypes { get; set; } public string? PostLogoutRedirectUri { get; set; } } }