6
2026-01-24 12:49:55 +03:00

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;
}
}