11 lines
280 B
C#
11 lines
280 B
C#
namespace RobotNet.WebApp.Scripts.Monaco;
|
|
|
|
public struct UriComponents
|
|
{
|
|
public string? Scheme { get; set; }
|
|
public string? Authority { get; set; }
|
|
public string? Path { get; set; }
|
|
public string? Query { get; set; }
|
|
public string? Fragment { get; set; }
|
|
}
|