10 lines
263 B
C#
10 lines
263 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class UserStateModel
|
|
{
|
|
public string name { get; set; }
|
|
public int time { get; set; }
|
|
public string scene { get; set; }
|
|
public string tips { get; set; }
|
|
public List<AttrItem> attr { get; set; }
|
|
} |