AS400_API_DOTNET/Auth/LoginResponse.cs
2025-10-17 16:01:56 +07:00

6 lines
185 B
C#

using System.Collections.Generic;
namespace AS400API.Auth;
public sealed record LoginResponse(string AccessToken, int ExpiresIn, string TokenType, IReadOnlyCollection<string> Roles);