6
2025-08-05 10:00:54 +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;
}
}