Files
Kg.SeaTime/Service/Application.Domain.Entity/model/UserStateModel.cs
2026-06-29 18:17:54 +08:00

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; }
}