server-master/srcs/_plugins/Plugin.Raids/Configs/RaidStartConfiguration.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
338 B
C#

namespace Plugin.Raids.Configs;
public class RaidStartConfiguration
{
public byte MaximumSlots { get; set; }
public byte MinimumSlots { get; set; }
public byte MinimumLevel { get; set; }
public byte MaximumLevel { get; set; }
public byte MinimumHeroLevel { get; set; }
public byte MaximumHeroLevel { get; set; }
}