11 lines
No EOL
338 B
C#
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; }
|
|
} |