feat: 先搞一个dbmigrator凑合用

This commit is contained in:
2025-10-25 16:06:23 +08:00
parent ab8f120366
commit 283c30310a
17 changed files with 290 additions and 58 deletions

View File

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