mirror of
https://github.com/LANCommander/RegParser.git
synced 2026-08-01 01:53:24 -04:00
24 lines
618 B
C#
24 lines
618 B
C#
namespace RegParserDotNet
|
|
{
|
|
public class RegistryEntry
|
|
{
|
|
public RegistryValueType Type { get; set; }
|
|
public string Path { get; set; }
|
|
public string Property { get; set; }
|
|
public object Value { get; set; }
|
|
|
|
public RegistryEntry(string path, string property, RegistryValueType type, object value)
|
|
{
|
|
Path = path;
|
|
Property = property;
|
|
Type = type;
|
|
Value = value;
|
|
}
|
|
|
|
public RegistryEntry(string path)
|
|
{
|
|
Path = path;
|
|
Type = RegistryValueType.REG_KEY;
|
|
}
|
|
}
|
|
}
|