mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
27 lines
No EOL
425 B
C#
27 lines
No EOL
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.Debug.VSDebugEngine
|
|
{
|
|
public class DebugLocalInfo
|
|
{
|
|
public bool IsLocal
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int Index
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |