fengling-auth-service/ViewModels/AuthorizeViewModel.cs
2026-02-03 15:30:12 +08:00

6 lines
178 B
C#

namespace Fengling.AuthService.ViewModels;
public record AuthorizeViewModel(string? ApplicationName, string? Scope)
{
public string[]? Scopes => Scope?.Split(' ') ?? null;
}