mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
14 lines
352 B
C#
14 lines
352 B
C#
using Phantom.Common.Data.Java;
|
|
|
|
namespace Phantom.Agent.Minecraft.Java;
|
|
|
|
public sealed class JavaRuntimeExecutable {
|
|
internal string ExecutablePath { get; }
|
|
internal JavaRuntime Runtime { get; }
|
|
|
|
internal JavaRuntimeExecutable(string executablePath, JavaRuntime runtime) {
|
|
this.ExecutablePath = executablePath;
|
|
this.Runtime = runtime;
|
|
}
|
|
}
|