PKHeX/PKHeX.Core/Editing/Saves/Management/INamedFolderPath.cs

9 lines
172 B
C#

namespace PKHeX.Core
{
public interface INamedFolderPath
{
string Path { get; }
string DisplayText { get; }
bool Custom { get; }
}
}