55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
using SGModule.ConfigLoader;
|
|
|
|
namespace RedHotRoast {
|
|
[ConfigKey("TurnOffRewards")]
|
|
public class TurnOffRewards {
|
|
public int Reward_Type;
|
|
public float quantity;
|
|
public int weight;
|
|
}
|
|
|
|
[ConfigKey("exBrPool")]
|
|
public class exBrPool
|
|
{
|
|
public int id;
|
|
public string user_name;
|
|
public string amount;
|
|
}
|
|
public class exBrPoolModel
|
|
{
|
|
public static List<string> config_name_list;
|
|
public static List<string> config_money_list;
|
|
}
|
|
|
|
[ConfigKey("exBrPool_2")]
|
|
public class exBrPool_2
|
|
{
|
|
public int id;
|
|
public string user_name;
|
|
public string amount;
|
|
}
|
|
public class exBrPoolModel2
|
|
{
|
|
public static List<string> config_name_list;
|
|
public static List<string> config_money_list;
|
|
}
|
|
|
|
[ConfigKey("LevelAttempts")]
|
|
public class LevelAttempts
|
|
{
|
|
public int id;
|
|
public string user_name;
|
|
public string amount;
|
|
}
|
|
public class LevelAttemptsModel
|
|
{
|
|
public static List<string> config_name_list;
|
|
public static List<string> config_money_list;
|
|
|
|
}
|
|
|
|
}
|