11 lines
290 B
C#
11 lines
290 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 headImg { get; set; }
|
|
public int area { get; set; }
|
|
public string icon { get; set; }
|
|
} |