10 lines
259 B
C#
10 lines
259 B
C#
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class CurrentUser
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Avatar { get; set; } = string.Empty;
|
|
public string UserId { get; set; } = string.Empty;
|
|
}
|
|
}
|