1
0
mirror of synced 2024-11-30 17:04:28 +01:00
GC-local-server-rewrite/SharedProject/models/User.cs
jiych1 14261c8e29 Change avatar/navigator/title select method
Add the function to change player name
2022-07-07 21:46:17 +08:00

14 lines
405 B
C#

using System.Text.Json.Serialization;
namespace SharedProject.models;
public class User
{
// ReSharper disable once UnusedAutoPropertyAccessor.Global
[JsonPropertyName(nameof(CardId))]
public long CardId { get; set; }
// ReSharper disable once AutoPropertyCanBeMadeGetOnly.Global
[JsonPropertyName(nameof(PlayerName))]
public string PlayerName { get; set; } = string.Empty;
}