1
0
mirror of synced 2024-12-03 10:17:19 +01:00
GC-local-server-rewrite/Domain/Config/UnlockRewardConfig.cs
2023-02-16 16:53:02 +08:00

18 lines
378 B
C#

using System.Text.Json.Serialization;
using Domain.Enums;
namespace Domain.Config;
public class UnlockRewardConfig
{
public int RewardId { get; set; }
[JsonConverter(typeof(JsonStringEnumConverter))]
public RewardType RewardType { get; set; }
public int TargetId { get; set; }
public int TargetNum { get; set; }
public int KeyNum { get; set; }
}