18 lines
371 B
C#
18 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Scrummer.Code.Entities
|
|
{
|
|
public class Card
|
|
{
|
|
public int IDCard { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
public string Body { get; set; }
|
|
|
|
public int X { get; set; }
|
|
public int Y { get; set; }
|
|
}
|
|
} |