diff --git a/VAR.Focus.Web/Code/Entities/Board.cs b/VAR.Focus.Web/Code/Entities/Board.cs index 50f7c1b..20f8d67 100644 --- a/VAR.Focus.Web/Code/Entities/Board.cs +++ b/VAR.Focus.Web/Code/Entities/Board.cs @@ -9,7 +9,8 @@ namespace VAR.Focus.Web.Code.Entities public string Title { 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 DateTime CreatedDate { get; set; } public string ModifiedBy { get; set; }