initial commit
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
using MessagePack;
|
||||
using Pulsar.Common.Messages.Other;
|
||||
using Pulsar.Common.Models;
|
||||
|
||||
namespace Pulsar.Common.Messages
|
||||
{
|
||||
[MessagePackObject]
|
||||
public class GetChangeRegistryValueResponse : 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user