Files
Moonlight/Moonlight.Shared/Http/Responses/Auth/CheckResponse.cs
2024-10-01 14:27:09 +02:00

8 lines
207 B
C#

namespace Moonlight.Shared.Http.Responses.Auth;
public class CheckResponse
{
public string Username { get; set; }
public string Email { get; set; }
public string[] Permissions { get; set; }
}