mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
14 lines
433 B
C#
14 lines
433 B
C#
using ir23.Migrations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace ir23.Data
|
|
{
|
|
public class playersetting
|
|
{
|
|
[JsonPropertyName("Id")] public long Id { get; set; }
|
|
[JsonPropertyName("accountId")] public required long accountId { get; set; }
|
|
[JsonPropertyName("Key")] public required string Key { get; set; }
|
|
[JsonPropertyName("Value")] public required string Value { get; set; }
|
|
}
|
|
}
|