Improving print history display

This commit is contained in:
Lars Brubaker 2020-07-06 17:48:47 -07:00
parent 74f20132b4
commit 50041b2142
4 changed files with 16 additions and 7 deletions

View file

@ -35,17 +35,19 @@ using MatterHackers.DataConverters3D;
namespace MatterHackers.MatterControl.Library
{
[Flags]
public enum SortKey
{
Default,
Name,
CreatedDate,
ModifiedDate,
Default = 0,
Name = 1,
CreatedDate = 2,
ModifiedDate = 4,
}
public class SortBehavior
{
public SortKey SortKey { get; set; }
public bool Ascending { get; set; }
}