19 lines
482 B
C#
19 lines
482 B
C#
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; }
|
|
}
|
|
}
|