1
0
mirror of synced 2025-02-12 08:52:57 +01:00

10 lines
284 B
C#
Raw Normal View History

namespace SharedProject.models;
2022-04-25 02:07:11 +08:00
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;
}