Rename old C# backend folder
This commit is contained in:
parent
f3eb84d812
commit
dc685661a7
16 changed files with 0 additions and 0 deletions
3
backend-C#/LeakyShipsAPI/Model/Board.cs
Normal file
3
backend-C#/LeakyShipsAPI/Model/Board.cs
Normal file
|
@ -0,0 +1,3 @@
|
|||
namespace LeakyShipsAPI.Model;
|
||||
|
||||
public record Board(Guid Id);
|
3
backend-C#/LeakyShipsAPI/Model/Player.cs
Normal file
3
backend-C#/LeakyShipsAPI/Model/Player.cs
Normal file
|
@ -0,0 +1,3 @@
|
|||
namespace LeakyShipsAPI.Model;
|
||||
|
||||
public record Player(Guid Id, string Name);
|
3
backend-C#/LeakyShipsAPI/Model/Session.cs
Normal file
3
backend-C#/LeakyShipsAPI/Model/Session.cs
Normal file
|
@ -0,0 +1,3 @@
|
|||
namespace LeakyShipsAPI.Model;
|
||||
|
||||
public record Session(Guid Id, Player PlayerOne, Player PlayerTwo);
|
Loading…
Add table
Add a link
Reference in a new issue