Files
Kg.SeaTime/Service/Application.Domain.Entity/model/UserModel.cs
Putoo f8d4a28d53 121
2026-05-30 17:32:27 +08:00

14 lines
365 B
C#

namespace Application.Domain.Entity;
public class UserModel
{
public string userNo { get; set; }
public string nick { get; set; }
public string sex { get; set; }
public string sign { get; set; }
public string headImg { get; set; }
public int area { get; set; }
public string icon { get; set; }
public int lev { get; set; }
}