mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-22 08:42:44 +01:00
12 lines
373 B
C#
12 lines
373 B
C#
using Phantom.Common.Data.Instance;
|
|
|
|
namespace Phantom.Server.Services.Instances;
|
|
|
|
public sealed record Instance(
|
|
InstanceConfiguration Configuration,
|
|
IInstanceStatus Status,
|
|
bool LaunchAutomatically
|
|
) {
|
|
internal Instance(InstanceConfiguration configuration, bool launchAutomatically = false) : this(configuration, InstanceStatus.Offline, launchAutomatically) {}
|
|
}
|