2026-05-07 14:56:44 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using SGModule.ConfigLoader;
|
|
|
|
|
|
|
|
|
|
namespace BallKingdomCrush
|
|
|
|
|
{
|
|
|
|
|
[ConfigKey("VipClub")]
|
|
|
|
|
public class VipClub
|
|
|
|
|
{
|
|
|
|
|
public int id;
|
|
|
|
|
public int VipType;
|
|
|
|
|
public float DiscountPrice;
|
|
|
|
|
public float Price;
|
|
|
|
|
}
|
|
|
|
|
}
|