Enable the GitHub browsing for Make Model

This commit is contained in:
LarsBrubaker 2020-08-03 07:50:25 -07:00
parent 9271d02d3c
commit 1ab318fb30
6 changed files with 155 additions and 82 deletions

View file

@ -36,10 +36,15 @@ namespace MatterHackers.MatterControl.Library
public interface ILibraryItem
{
string ID { get; }
string Name { get; }
bool IsProtected { get; }
bool IsVisible { get; }
DateTime DateModified { get; }
DateTime DateCreated { get; }
}
@ -68,8 +73,11 @@ namespace MatterHackers.MatterControl.Library
public interface ILibraryAsset : ILibraryItem
{
string ContentType { get; }
string Category { get; }
string FileName { get; }
string AssetPath { get; }
}
}