This commit is contained in:
2024-10-31 19:04:55 -05:00
parent fa1ad5f6d0
commit 9cd1ad8883
11 changed files with 48 additions and 70 deletions

View File

@@ -1,11 +1,10 @@
using System;
namespace Shogi.Contracts.Types
namespace Shogi.Contracts.Types;
public class SessionMetadata
{
public class SessionMetadata
{
public Guid SessionId { get; set; }
public string Player1 { get; set; } = string.Empty;
public string Player2 { get; set; } = string.Empty;
}
public Guid SessionId { get; set; }
public string Player1 { get; set; } = string.Empty;
public string Player2 { get; set; } = string.Empty;
}