28 lines
688 B
C#
28 lines
688 B
C#
// File: Models/MemoryRegionInfo.cs
|
|
|
|
namespace WebmrAPI.Models
|
|
{
|
|
public class MemoryRegionInfo : MemoryRegion
|
|
{
|
|
private string _state = String.Empty;
|
|
private string _protect = String.Empty;
|
|
private string _type = String.Empty;
|
|
|
|
public string State
|
|
{
|
|
get => LockedGet(ref _state);
|
|
set => LockedSet(ref _state, value);
|
|
}
|
|
public string Protect
|
|
{
|
|
get => LockedGet(ref _protect);
|
|
set => LockedSet(ref _protect, value);
|
|
}
|
|
public string Type
|
|
{
|
|
get => LockedGet(ref _type);
|
|
set => LockedSet(ref _type, value);
|
|
}
|
|
}
|
|
}
|