feat: 先搞一个dbmigrator凑合用
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user