initial commit
Pulsar .NET 9.0 Windows Release / build (push) Canceled after 0s
Mirror to Codeberg and Gitea / mirror (push) Canceled after 0s

This commit is contained in:
i2p
2026-08-27 10:57:58 -06:00
commit 773d05f8f1
1038 changed files with 109261 additions and 0 deletions
@@ -0,0 +1,22 @@
using MessagePack;
using Pulsar.Common.Messages.Other;
using Pulsar.Common.Models;
namespace Pulsar.Common.Messages.Administration.RegistryEditor
{
[MessagePackObject]
public class GetCreateRegistryKeyResponse : IMessage
{
[Key(1)]
public string ParentPath { get; set; }
[Key(2)]
public RegSeekerMatch Match { get; set; }
[Key(3)]
public bool IsError { get; set; }
[Key(4)]
public string ErrorMsg { get; set; }
}
}