Files
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

19 lines
334 B
C#

using Microsoft.Win32;
using MessagePack;
namespace Pulsar.Common.Models
{
[MessagePackObject]
public class RegValueData
{
[Key(1)]
public string Name { get; set; }
[Key(2)]
public RegistryValueKind Kind { get; set; }
[Key(3)]
public byte[] Data { get; set; }
}
}