Entities.Board: Active by default on new instances.

This commit is contained in:
2015-11-09 07:16:25 +01:00
parent 7cb8fb45d0
commit 987e23e487

View File

@@ -9,7 +9,8 @@ namespace VAR.Focus.Web.Code.Entities
public string Title { get; set; } public string Title { get; set; }
public string Description { get; set; } public string Description { get; set; }
public bool Active { get; set; } private bool _active = true;
public bool Active { get { return _active} set { _active = value; } }
public string CreatedBy { get; set; } public string CreatedBy { get; set; }
public DateTime CreatedDate { get; set; } public DateTime CreatedDate { get; set; }
public string ModifiedBy { get; set; } public string ModifiedBy { get; set; }