Files
SVSimServer/SVSim.Database/Models/Config/PlayerConfig.cs
2026-05-24 09:27:10 -04:00

10 lines
163 B
C#

using Microsoft.EntityFrameworkCore;
namespace SVSim.Database.Models.Config;
[Owned]
public class PlayerConfig
{
public int MaxFriends { get; set; } = 20;
}