using System.Collections.Generic; namespace WingsEmu.Game.Raids; public class RaidWave { public RaidWave(IEnumerable monsters, short timeInSeconds) { Monsters = monsters; TimeInSeconds = timeInSeconds; } public IEnumerable Monsters { get; } public short TimeInSeconds { get; } }