mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-25 05:50:22 +00:00
Fix errors
This commit is contained in:
parent
72636c7726
commit
cf0e5ccc26
1 changed files with 16 additions and 0 deletions
16
Switch_Toolbox_Library/Interfaces/IArchiveQuickAccess.cs
Normal file
16
Switch_Toolbox_Library/Interfaces/IArchiveQuickAccess.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue