mirror of https://github.com/quasar/Quasar.git
21 lines
427 B
C#
21 lines
427 B
C#
using ProtoBuf;
|
|
|
|
namespace Quasar.Common.Messages
|
|
{
|
|
[ProtoContract]
|
|
public class GetDeleteRegistryKeyResponse : IMessage
|
|
{
|
|
[ProtoMember(1)]
|
|
public string ParentPath { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public string KeyName { get; set; }
|
|
|
|
[ProtoMember(3)]
|
|
public bool IsError { get; set; }
|
|
|
|
[ProtoMember(4)]
|
|
public string ErrorMsg { get; set; }
|
|
}
|
|
}
|