9 lines
162 B
C#
9 lines
162 B
C#
namespace qtc_api.Schema
|
|
{
|
|
public class TicTacToeMove
|
|
{
|
|
public User User { get; set; } = new();
|
|
public int Point { get; set; }
|
|
}
|
|
}
|