Files
Moonlight/Moonlight.Shared/Http/Responses/Admin/Users/UserResponse.cs

8 lines
196 B
C#

namespace Moonlight.Shared.Http.Responses.Admin.Users;
public class UserResponse
{
public int Id { get; set; }
public string Username { get; set; }
public string Email { get; set; }
}