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

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