23 lines
499 B
C#
23 lines
499 B
C#
using MessagePack;
|
|
using Pulsar.Common.Messages.Other;
|
|
using Pulsar.Common.Models;
|
|
|
|
namespace Pulsar.Common.Messages.Administration.RegistryEditor
|
|
{
|
|
[MessagePackObject]
|
|
public class GetCreateRegistryValueResponse : IMessage
|
|
{
|
|
[Key(1)]
|
|
public string KeyPath { get; set; }
|
|
|
|
[Key(2)]
|
|
public RegValueData Value { get; set; }
|
|
|
|
[Key(3)]
|
|
public bool IsError { get; set; }
|
|
|
|
[Key(4)]
|
|
public string ErrorMsg { get; set; }
|
|
}
|
|
}
|