Make it possible to set the DtaeCreated on a GeneratorItem
This commit is contained in:
parent
350b9ac7a1
commit
3da440fc4d
1 changed files with 2 additions and 2 deletions
|
|
@ -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; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue