1
0
mirror of synced 2025-02-15 10:12:34 +01:00
GC-local-server-rewrite/Domain/Config/UnlockRewardConfig.cs

18 lines
378 B
C#
Raw Normal View History

2023-02-16 16:53:02 +08:00
using System.Text.Json.Serialization;
using Domain.Enums;
namespace Domain.Config;
2023-02-14 00:38:19 +08:00
public class UnlockRewardConfig
{
public int RewardId { get; set; }
2023-02-16 16:53:02 +08:00
[JsonConverter(typeof(JsonStringEnumConverter))]
public RewardType RewardType { get; set; }
2023-02-14 00:38:19 +08:00
public int TargetId { get; set; }
2023-02-16 16:53:02 +08:00
2023-02-14 00:38:19 +08:00
public int TargetNum { get; set; }
2023-02-16 16:53:02 +08:00
2023-02-14 00:38:19 +08:00
public int KeyNum { get; set; }
}