Boards: Creation and accessing.

This commit is contained in:
2015-07-29 16:44:54 +02:00
parent 45f0018512
commit f088f80cb0
6 changed files with 309 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
using System;
namespace VAR.Focus.Web.Code.Entities
{
public class Board
{
public int IDBoard { get; set; }
public string Title { get; set; }
public string Description { 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; }
}
}