2023-04-04 01:56:57 +00:00
|
|
|
namespace Sequence.Entities;
|
|
|
|
|
|
|
|
public class Card
|
|
|
|
{
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
public Suit Suit { get; set; }
|
|
|
|
public string Value { get; set; }
|
2023-04-07 03:29:08 +00:00
|
|
|
public int PositionX { get; set; }
|
|
|
|
public int PositionY { get; set; }
|
2023-04-05 02:47:05 +00:00
|
|
|
}
|