1
0
mirror of synced 2024-11-30 17:04:28 +01:00
GC-local-server-rewrite/Domain/Config/UnlockRewardConfig.cs
2023-02-14 00:38:19 +08:00

14 lines
275 B
C#

namespace Domain.Config;
public class UnlockRewardConfig
{
public int RewardId { get; set; }
public int RewardType { get; set; }
public int TargetId { get; set; }
public int TargetNum { get; set; }
public int KeyNum { get; set; }
}