mirror of https://github.com/quasar/Quasar.git
24 lines
504 B
C#
24 lines
504 B
C#
|
using ProtoBuf;
|
|||
|
|
|||
|
namespace Quasar.Common.Packets
|
|||
|
{
|
|||
|
[ProtoContract]
|
|||
|
public class GetRenameRegistryValueResponse : IPacket
|
|||
|
{
|
|||
|
[ProtoMember(1)]
|
|||
|
public string KeyPath { get; set; }
|
|||
|
|
|||
|
[ProtoMember(2)]
|
|||
|
public string OldValueName { get; set; }
|
|||
|
|
|||
|
[ProtoMember(3)]
|
|||
|
public string NewValueName { get; set; }
|
|||
|
|
|||
|
[ProtoMember(4)]
|
|||
|
public bool IsError { get; set; }
|
|||
|
|
|||
|
[ProtoMember(5)]
|
|||
|
public string ErrorMsg { get; set; }
|
|||
|
}
|
|||
|
}
|