mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
9 lines
187 B
C#
9 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MtApi.Responses
|
|
{
|
|
public class GetOrdersResponse: ResponseBase
|
|
{
|
|
public List<MtOrder> Orders { get; set; }
|
|
}
|
|
} |