Files
Kg.SeaTime/Service/Application.Domain.Entity/model/OnHookAwardModel.cs
2026-07-08 19:13:55 +08:00

10 lines
268 B
C#

namespace Application.Domain.Entity;
public class OnHookAwardModel
{
public string userId { get; set; }
public long exp { get; set; }
public long copper { get; set; }
public long useTime { get; set; }
public List<TowerGet> award { get; set; }
}