mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
14 lines
370 B
C#
14 lines
370 B
C#
using System;
|
|
|
|
namespace MtApi.Requests
|
|
{
|
|
internal class SessionRequest : RequestBase
|
|
{
|
|
public string Symbol { get; set; }
|
|
public DayOfWeek DayOfWeek { get; set; }
|
|
public int SessionIndex { get; set; }
|
|
public SessionType SessionType { get; set; }
|
|
|
|
public override RequestType RequestType => RequestType.Session;
|
|
}
|
|
} |