14 lines
278 B
C#
14 lines
278 B
C#
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;
|
|
}
|
|
}
|
|
}
|