mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
17 lines
412 B
C#
17 lines
412 B
C#
using System;
|
|
|
|
namespace MtApi.Requests
|
|
{
|
|
public 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
|
|
{
|
|
get { return RequestType.Session; }
|
|
}
|
|
}
|
|
} |