12 lines
237 B
C#
12 lines
237 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rail
|
|
{
|
|
public class RailInGamePurchasePurchaseProductsResponse : EventBase
|
|
{
|
|
public string order_id;
|
|
|
|
public List<RailProductItem> delivered_products = new List<RailProductItem>();
|
|
}
|
|
}
|