Files
SVSimServer/SVSim.Database/Models/Config/PlayerConfig.cs
2026-05-24 21:13:15 -04:00

10 lines
203 B
C#

namespace SVSim.Database.Models.Config;
[ConfigSection("Player")]
public class PlayerConfig
{
public int MaxFriends { get; set; } = 20;
public static PlayerConfig ShippedDefaults() => new();
}