2022-04-24 02:29:55 +08:00
|
|
|
|
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;
|
|
|
|
|
}
|