12 lines
406 B
C#
12 lines
406 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SVSim.Bootstrap.Models.Seed;
|
|
|
|
public class ArenaTwoPickRewardSeed
|
|
{
|
|
[JsonPropertyName("win_count")] public int WinCount { get; set; }
|
|
[JsonPropertyName("reward_type")] public int RewardType { get; set; }
|
|
[JsonPropertyName("reward_id")] public long RewardId { get; set; }
|
|
[JsonPropertyName("reward_num")] public int RewardNum { get; set; }
|
|
}
|