10 lines
203 B
C#
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();
|
|
}
|