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