Files
VAR.WebFormsCore/VAR.Focus.Web/Code/Entities/Card.cs
2015-06-26 02:23:21 +02:00

24 lines
618 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace VAR.Focus.Web.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; }
public bool Active { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedDate { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedDate { get; set; }
}
}