mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-03-07 04:08:00 +01:00
11 lines
347 B
C#
11 lines
347 B
C#
using System.Collections.Immutable;
|
|
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Data.Agent.Instance.Stop;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record InstanceStopRecipe(
|
|
[property: MemoryPackOrder(0)] ImmutableArray<IInstanceStopStep> Preparation,
|
|
[property: MemoryPackOrder(1)] IInstanceValue StopCommand
|
|
);
|