15 lines
316 B
C#
15 lines
316 B
C#
|
|
namespace Mono.Debugging.Soft
|
|||
|
|
{
|
|||
|
|
internal class SourceLinkMap
|
|||
|
|
{
|
|||
|
|
public string RelativePathWildcard { get; }
|
|||
|
|
public string UriWildcard { get; }
|
|||
|
|
|
|||
|
|
public SourceLinkMap (string relativePathWildcard, string uriWildcard)
|
|||
|
|
{
|
|||
|
|
UriWildcard = uriWildcard;
|
|||
|
|
RelativePathWildcard = relativePathWildcard;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|