mirror of
https://github.com/myawired/2025-RecRoom-Server-E12354.git
synced 2026-07-18 00:21:15 +10:00
18 lines
385 B
C#
18 lines
385 B
C#
using LiteDB;
|
|
|
|
namespace Rec_rewild_live_rewrite.api.server.Classes.db_class
|
|
{
|
|
public class PlayerSetting
|
|
{
|
|
[BsonId]
|
|
public ulong PlayerId { get; set; }
|
|
public List<Setting> Settings { get; set; } = new List<Setting>();
|
|
}
|
|
|
|
public class Setting
|
|
{
|
|
public string? Key { get; set; }
|
|
public string? Value { get; set; }
|
|
}
|
|
}
|