mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-31 12:37:47 +00:00
15 lines
328 B
C#
15 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi5.Requests
|
|
{
|
|
internal class SymbolInfoTickRequest : RequestBase
|
|
{
|
|
public override RequestType RequestType => RequestType.SymbolInfoTick;
|
|
|
|
public string SymbolName { get; set; }
|
|
}
|
|
}
|