1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Fix errors

This commit is contained in:
KillzXGaming 2019-12-12 20:02:27 -05:00
parent 72636c7726
commit cf0e5ccc26

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
public interface IArchiveQuickAccess
{
/// <summary>
/// Determines the category. The keys are the extension, value is category.
/// </summary>
Dictionary<string, string> CategoryLookup { get; }
}
}