Add project files.

This commit is contained in:
2023-06-02 15:36:44 -05:00
parent b44f7d78c6
commit fd2cea2a28
8 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace Squiddler_Server.Serializable
{
public struct Card
{
public string Text { get; set; }
public int Value { get; set; }
public Card(string text, int value)
{
Text = text;
Value = value;
}
}
}