mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 07:01:03 +08:00
11 lines
261 B
C#
11 lines
261 B
C#
namespace Foxel.Models.Response.User;
|
|
|
|
public class UserResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Email { get; set; }
|
|
public string Role { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|