Quasar/Quasar.Common/Messages/DoDeleteRegistryKey.cs

15 lines
279 B
C#

using ProtoBuf;
namespace Quasar.Common.Messages
{
[ProtoContract]
public class DoDeleteRegistryKey : IMessage
{
[ProtoMember(1)]
public string ParentPath { get; set; }
[ProtoMember(2)]
public string KeyName { get; set; }
}
}