11 lines
228 B
C#
11 lines
228 B
C#
using System;
|
|
|
|
namespace Shogi.Contracts.Types;
|
|
|
|
public class SessionMetadata
|
|
{
|
|
public Guid SessionId { get; set; }
|
|
public string Player1 { get; set; } = string.Empty;
|
|
public string Player2 { get; set; } = string.Empty;
|
|
}
|