2024-03-04 18:45:21 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace BITKit.Mod
|
|
|
|
{
|
|
|
|
public struct LoadFromFolderCommand
|
|
|
|
{
|
|
|
|
public string FolderPath;
|
|
|
|
}
|
2024-03-05 15:27:29 +08:00
|
|
|
public struct UninstallPackageCommand
|
|
|
|
{
|
|
|
|
public string PackageName;
|
|
|
|
}
|
2024-03-04 18:45:21 +08:00
|
|
|
}
|