Files
mtapi/MtApi/Requests/SessionRequest.cs
T

14 lines
370 B
C#
Raw Normal View History

2016-10-05 17:02:00 +03:00
using System;
namespace MtApi.Requests
{
internal class SessionRequest : RequestBase
2016-10-05 17:02:00 +03:00
{
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;
2016-10-05 17:02:00 +03:00
}
}