Files
ZooMatch-GP/Assets/ZooMatch/Define/Model/Config/Game/VipModel.cs
T

15 lines
283 B
C#
Raw Normal View History

2026-06-02 10:26:44 +08:00
using System.Collections.Generic;
using SGModule.ConfigLoader;
namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
[ConfigKey("VipClub")]
public class VipClub
{
public int id;
public int VipType;
public float DiscountPrice;
public float Price;
}
}