forked from aly/qstbak
12 lines
211 B
C#
12 lines
211 B
C#
namespace SmartNav;
|
|
|
|
public interface ITerritoryInfo
|
|
{
|
|
string? GetName(uint territoryId);
|
|
|
|
string GetNameAndId(uint territoryId);
|
|
|
|
byte GetExVersion(uint territoryId);
|
|
|
|
bool CanUseMount(uint territoryId);
|
|
}
|