mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
13 lines
306 B
C#
13 lines
306 B
C#
using Phantom.Agent.Minecraft.Java;
|
|
using Phantom.Agent.Minecraft.Properties;
|
|
|
|
namespace Phantom.Agent.Minecraft.Instance;
|
|
|
|
public sealed record InstanceProperties(
|
|
Guid JavaRuntimeGuid,
|
|
JvmProperties JvmProperties,
|
|
string InstanceFolder,
|
|
string ServerVersion,
|
|
ServerProperties ServerProperties
|
|
);
|