diff --git a/Entities/Match.cs b/Entities/Match.cs new file mode 100644 index 0000000..779859a --- /dev/null +++ b/Entities/Match.cs @@ -0,0 +1,9 @@ +namespace Sequence.Entities; + +public class Match +{ + public Guid Id { get; set; } + public DateTime Created { get; set; } + public Player PlayerOne { get; set; } + public Player PlayerTwo { get; set; } +} \ No newline at end of file diff --git a/Entities/Player.cs b/Entities/Player.cs new file mode 100644 index 0000000..cbaeb14 --- /dev/null +++ b/Entities/Player.cs @@ -0,0 +1,9 @@ +namespace Sequence.Entities; + +public class Player +{ + public Guid Id { get; set; } + public User User { get; set; } + public Hand Hand { get; set; } + public ICollection PlayedCards { get; set; } +} \ No newline at end of file