Make it possible to set the DtaeCreated on a GeneratorItem

This commit is contained in:
LarsBrubaker 2018-04-26 23:00:10 -07:00
parent 350b9ac7a1
commit 3da440fc4d

View file

@ -100,9 +100,9 @@ namespace MatterHackers.MatterControl.Library
public bool IsProtected { get; set; }
public bool IsVisible => true;
public DateTime DateCreated { get; } = DateTime.Now;
public DateTime DateCreated { get; set; } = DateTime.Now;
public DateTime DateModified { get; } = DateTime.Now;
public DateTime DateModified => DateCreated;
public Color Color { get; set; }