Move from the hand.
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
namespace Shogi.Contracts.Types
|
||||
{
|
||||
public class User
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
namespace Shogi.Contracts.Types;
|
||||
|
||||
public string Name { get; set; } = string.Empty;
|
||||
}
|
||||
public class User
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// A display name for the user.
|
||||
/// </summary>
|
||||
public string Name { get; set; } = string.Empty;
|
||||
|
||||
public User(string id, string name)
|
||||
{
|
||||
Id = id;
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user