mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
19 lines
363 B
C#
19 lines
363 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MtApi
|
|
{
|
|
public class TimeBarArgs: EventArgs
|
|
{
|
|
public TimeBarArgs(MtTimeBar timeBar)
|
|
{
|
|
TimeBar = timeBar;
|
|
}
|
|
|
|
public MtTimeBar TimeBar { get; private set; }
|
|
}
|
|
}
|