mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00: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; }
|
|||
|
}
|
|||
|
}
|