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