1
0
mirror of synced 2025-02-15 18:22:37 +01:00

20 lines
448 B
C#
Raw Normal View History

2023-02-09 17:25:42 +08:00
namespace Domain.Config;
public class GameConfig
{
public const string GAME_SECTION = "Game";
public int AvatarCount { get; set; }
public int NavigatorCount { get; set; }
public int ItemCount { get; set; }
public int SkinCount { get; set; }
public int SeCount { get; set; }
public int TitleCount { get; set; }
2023-02-14 00:38:19 +08:00
public List<UnlockRewardConfig> UnlockRewards { get; set; } = new();
2023-02-09 17:25:42 +08:00
}