mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-29 04:15:45 +02:00
11 lines
331 B
C#
11 lines
331 B
C#
using System.Collections.Immutable;
|
|
using MemoryPack;
|
|
|
|
namespace Phantom.Common.Messages.Web.ToWeb;
|
|
|
|
[MemoryPackable(GenerateType.VersionTolerant)]
|
|
public sealed partial record InstanceOutputMessage(
|
|
[property: MemoryPackOrder(0)] Guid InstanceGuid,
|
|
[property: MemoryPackOrder(1)] ImmutableArray<string> Lines
|
|
) : IMessageToWeb;
|