Files
PCK-Studio/PckStudio.Core/Interfaces/IDLCPackage.cs
2025-11-28 08:54:17 +01:00

16 lines
315 B
C#

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