10 lines
163 B
C#
10 lines
163 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace SVSim.Database.Models.Config;
|
|
|
|
[Owned]
|
|
public class PlayerConfig
|
|
{
|
|
public int MaxFriends { get; set; } = 20;
|
|
}
|