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; }