mirror of
https://github.com/chsakell/aspnet-core-signalr-angular.git
synced 2025-12-22 17:27:48 +00:00
14 lines
234 B
C#
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; }
|
|
}
|
|
} |