mirror of https://github.com/quasar/Quasar.git
18 lines
358 B
C#
18 lines
358 B
C#
using ProtoBuf;
|
|
|
|
namespace Quasar.Common.Messages
|
|
{
|
|
[ProtoContract]
|
|
public class DoRenameRegistryValue : IMessage
|
|
{
|
|
[ProtoMember(1)]
|
|
public string KeyPath { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public string OldValueName { get; set; }
|
|
|
|
[ProtoMember(3)]
|
|
public string NewValueName { get; set; }
|
|
}
|
|
}
|