Files
aspnet-core-signalr-angular/Core/Timer/TimerEventArgs.cs
2016-09-30 11:32:27 +03:00

14 lines
234 B
C#

using System;
namespace LiveGameFeed.Core.MvcTimer
{
public class TimerEventArgs : EventArgs
{
public TimerEventArgs(int value)
{
Value = value;
}
public int Value { get; }
}
}