11 lines
217 B
C#
11 lines
217 B
C#
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;
|
|
} |