initial commit

This commit is contained in:
Ikatono
2026-06-21 18:15:16 -05:00
commit ae41d1a273
126 changed files with 69109 additions and 0 deletions

11
SquiddlerDomain/Card.cs Normal file
View File

@@ -0,0 +1,11 @@
using System.Text.Json;
namespace Squiddler.Domain;
public class Card(string letters, int count, int value)
{
string Letters { get; } = letters;
int Count { get; } = count;
int Value { get; } = value;
}