Corrected project name
Replaced "Sinky" with "Leaky" in the backend
This commit is contained in:
parent
fe945a3e06
commit
cf92993e8a
18 changed files with 38 additions and 38 deletions
3
backend/LeakyShipsAPI/Model/Board.cs
Normal file
3
backend/LeakyShipsAPI/Model/Board.cs
Normal file
|
@ -0,0 +1,3 @@
|
|||
namespace LeakyShipsAPI.Model;
|
||||
|
||||
public record Board(Guid Id);
|
3
backend/LeakyShipsAPI/Model/Player.cs
Normal file
3
backend/LeakyShipsAPI/Model/Player.cs
Normal file
|
@ -0,0 +1,3 @@
|
|||
namespace LeakyShipsAPI.Model;
|
||||
|
||||
public record Player(Guid Id, string Name);
|
3
backend/LeakyShipsAPI/Model/Session.cs
Normal file
3
backend/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