Files
KonSoft.Clean/shared/KonSoft.Shared.DbMigrator/OpenIddict/OpenIddictApplication.cs

20 lines
563 B
C#

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<string> GrantTypes { get; set; }
public string? PostLogoutRedirectUri { get; set; }
}
}