1
0
mirror of synced 2024-12-14 07:12:54 +01:00
GC-local-server-rewrite/Domain/Config/GameConfig.cs
2023-02-14 00:38:19 +08:00

22 lines
511 B
C#

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; }
public List<int> UnlockableSongIds { get; set; } = new();
public List<UnlockRewardConfig> UnlockRewards { get; set; } = new();
}