10 lines
206 B
C#
10 lines
206 B
C#
namespace SVSim.Database.Models.Config;
|
|
|
|
[ConfigSection("Story")]
|
|
public class StoryConfig
|
|
{
|
|
public int ClassXpPerClear { get; set; } = 200;
|
|
|
|
public static StoryConfig ShippedDefaults() => new();
|
|
}
|