mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
7 lines
150 B
C#
7 lines
150 B
C#
using System;
|
|
|
|
namespace Microsoft.Iris.Debug.Data;
|
|
|
|
[Serializable]
|
|
public record struct MarkupLineNumberEntry(uint Offset, int Line, int Column);
|