Entities.Card: Active by default on new instances.
This commit is contained in:
@@ -12,7 +12,8 @@ namespace VAR.Focus.Web.Code.Entities
|
|||||||
public int X { get; set; }
|
public int X { get; set; }
|
||||||
public int Y { 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 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