mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 04:38:25 -05:00
10 lines
172 B
C#
10 lines
172 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface INamedFolderPath
|
|
{
|
|
string Path { get; }
|
|
string DisplayText { get; }
|
|
bool Custom { get; }
|
|
}
|
|
}
|