winmr-api/Models/MemoryRegionInfo.cs

28 lines
688 B
C#
Raw Normal View History

2025-07-02 16:06:50 +03:00
// File: Models/MemoryRegionInfo.cs
2025-06-30 18:15:07 +03:00
namespace WebmrAPI.Models
{
2025-07-02 16:06:50 +03:00
public class MemoryRegionInfo : MemoryRegion
2025-06-30 18:15:07 +03:00
{
2025-07-02 16:06:50 +03:00
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);
}
2025-06-30 18:15:07 +03:00
}
2025-07-02 16:06:50 +03:00
}