6 lines
178 B
C#
6 lines
178 B
C#
namespace Fengling.AuthService.ViewModels;
|
|
|
|
public record AuthorizeViewModel(string? ApplicationName, string? Scope)
|
|
{
|
|
public string[]? Scopes => Scope?.Split(' ') ?? null;
|
|
} |