10 lines
222 B
C#
10 lines
222 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rail
|
|
{
|
|
public class RailInGamePurchaseRequestAllProductsResponse : EventBase
|
|
{
|
|
public List<RailPurchaseProductInfo> all_products = new List<RailPurchaseProductInfo>();
|
|
}
|
|
}
|