initial commit
This commit is contained in:
11
SquiddlerDomain/Card.cs
Normal file
11
SquiddlerDomain/Card.cs
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user