mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-07 07:57:50 +00:00
9 lines
189 B
C#
9 lines
189 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace MtApi5.Responses
|
||
|
|
{
|
||
|
|
internal class CopyTicksResponse: ResponseBase
|
||
|
|
{
|
||
|
|
public List<MqlTick> Ticks { get; set; }
|
||
|
|
}
|
||
|
|
}
|