Files
PulsarK-main/Pulsar.Common/Messages/Monitoring/HVNC/GetHVNCMonitorsResponse.cs
T

13 lines
254 B
C#
Raw Normal View History

2026-08-27 10:57:58 -06:00
using MessagePack;
using Pulsar.Common.Messages.Other;
namespace Pulsar.Common.Messages.Monitoring.HVNC
{
[MessagePackObject]
public class GetHVNCMonitorsResponse : IMessage
{
[Key(1)]
public int Number { get; set; }
}
}