From 320c06c880a4a9d54d8f1ae015ee55126f65ffd5 Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 5 Apr 2023 06:36:31 -0400 Subject: [PATCH] thinking through types --- Entities/MatchCard.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Entities/MatchCard.cs b/Entities/MatchCard.cs index e861b3f..bcb1004 100644 --- a/Entities/MatchCard.cs +++ b/Entities/MatchCard.cs @@ -5,5 +5,6 @@ public class MatchCard public Guid Id { get; set; } public Match Match { get; set; } public Card Card { get; set; } - public int Order { get; set; } + public int PositionX { get; set; } + public int PositionY { get; set; } } \ No newline at end of file