CodeFactor clean up

This commit is contained in:
John Lewin 2018-12-10 14:32:56 -08:00
parent 527c57fb10
commit 7b20dd9b41
3 changed files with 29 additions and 44 deletions

View file

@ -53,25 +53,24 @@ namespace MatterHackers.MatterControl
public override void WriteJson(JsonWriter writer, ILibraryItem value, JsonSerializer serializer)
{
}
public class DummyItem : ILibraryItem
{
public string ID { get; set; }
public string Name { get; set; }
public bool IsProtected { get; set; }
public bool IsVisible { get; set; }
public DateTime DateModified { get; set; }
public DateTime DateCreated { get; set; }
public string Path { get; set; }
public string AssetPath { get; set; }
}
}
public class DummyItem : ILibraryItem
{
public string ID { get; set; }
public string Name { get; set; }
public bool IsProtected { get; set; }
public bool IsVisible { get; set; }
public DateTime DateModified { get; set; }
public DateTime DateCreated { get; set; }
public string Path { get; set; }
public string AssetPath { get; set; }
}
}