1
0
mirror of synced 2025-02-07 15:01:23 +01:00
2022-04-25 02:07:11 +08:00

10 lines
284 B
C#

namespace SharedProject.models;
public class User
{
// ReSharper disable once UnusedAutoPropertyAccessor.Global
public long CardId { get; set; }
// ReSharper disable once AutoPropertyCanBeMadeGetOnly.Global
public string PlayerName { get; set; } = string.Empty;
}