12 lines
404 B
C#
12 lines
404 B
C#
namespace RobotNet.WebApp.Scripts.Monaco;
|
|
|
|
public struct MarkdownString
|
|
{
|
|
public string Value { get; set; }
|
|
public bool? IsTrusted { get; set; } // TODO | MarkdownStringTrustedOptions;
|
|
public bool? SupportThemeIcons { get; set; }
|
|
public bool? SupportHtml { get; set; }
|
|
public UriComponents? BaseUri { get; set; }
|
|
public IDictionary<string, UriComponents>? Uris { get; set; }
|
|
}
|