6 lines
185 B
C#
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);
|