Files
PCK-Studio/PckStudio.Core/Interfaces/IDLCPackage.cs
2025-11-09 09:56:18 +01:00

18 lines
365 B
C#

namespace PckStudio.Core.Interfaces
{
public interface IDLCPackage
{
string Name { get; }
string Description { get; }
int Identifier { get; }
bool IsRootPackage { get; }
IDLCPackageLocationInfo PackageInfo { get; }
DLCPackageType GetDLCPackageType();
IDLCPackage ParentPackage { get; }
}
}