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