16 lines
204 B
C#
16 lines
204 B
C#
namespace rail
|
|
{
|
|
public class RailDiscountInfo
|
|
{
|
|
public PurchaseProductDiscountType type;
|
|
|
|
public uint start_time;
|
|
|
|
public float off;
|
|
|
|
public float discount_price;
|
|
|
|
public uint end_time;
|
|
}
|
|
}
|