13 lines
246 B
C#
13 lines
246 B
C#
namespace Content.Server._NF.RoundNotifications.Events;
|
|
|
|
[Serializable]
|
|
public sealed class RoundStartedEvent : EntityEventArgs
|
|
{
|
|
public int RoundId { get; }
|
|
|
|
public RoundStartedEvent(int roundId)
|
|
{
|
|
RoundId = roundId;
|
|
}
|
|
}
|