RobotNet/RobotNet.WebApp/Scripts/Monaco/MarkdownString.cs
2025-10-15 15:15:53 +07:00

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