10 lines
268 B
C#
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; }
|
|
} |