Add player settings feature and settings API

This commit is contained in:
Holden
2026-06-20 22:58:33 -05:00
parent f4887c3f93
commit e77e479493
17 changed files with 405 additions and 3 deletions
@@ -0,0 +1,20 @@
namespace RecNet.Domain.Profiles;
public class PlayerSetting
{
public Guid UserId { get; private set; }
public string Key { get; private set; }
public string Value { get; private set; }
internal PlayerSetting(Guid userId, string key, string value)
{
UserId = userId;
Key = key;
Value = value;
}
public void UpdateValue(string value)
{
Value = value;
}
}