Files
Kg.SeaTime/Service/Application.Domain.Entity/model/UserModel.cs
2026-06-08 18:56:28 +08:00

15 lines
404 B
C#

namespace Application.Domain.Entity;
public class UserModel
{
public string userId { get; set; }
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; }
}