winmr-api/Models/MemoryRegionInfo.cs
2025-06-30 18:15:07 +03:00

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;
}
}