Entities.Card: Active by default on new instances.

This commit is contained in:
2015-11-09 07:16:37 +01:00
parent 987e23e487
commit c30ea12ef7

View File

@@ -12,7 +12,8 @@ namespace VAR.Focus.Web.Code.Entities
public int X { get; set; }
public int Y { 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; }