Entities.Board: Active by default on new instances.
This commit is contained in:
@@ -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; }
|
||||||
|
|||||||
Reference in New Issue
Block a user