11 lines
359 B
C#
11 lines
359 B
C#
|
namespace WebmrAPI.Models
|
||
|
{
|
||
|
public class MemoryRegionInfo
|
||
|
{
|
||
|
public string BaseAddress { get; set; } = string.Empty;
|
||
|
public long RegionSize { get; set; }
|
||
|
public string State { get; set; } = string.Empty;
|
||
|
public string Protect { get; set; } = string.Empty;
|
||
|
public string Type { get; set; } = string.Empty;
|
||
|
}
|
||
|
}
|