mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 04:25:45 +00:00
19 lines
554 B
C#
19 lines
554 B
C#
namespace ServiceLib.Models;
|
|
|
|
public record TransportExtra
|
|
{
|
|
public string? RawHeaderType { get; init; }
|
|
public string? RawHost { get; init; }
|
|
|
|
public string? Host { get; init; }
|
|
public string? Path { get; init; }
|
|
public string? XhttpMode { get; init; }
|
|
public string? XhttpExtra { get; init; }
|
|
|
|
public string? GrpcAuthority { get; init; }
|
|
public string? GrpcServiceName { get; init; }
|
|
public string? GrpcMode { get; init; }
|
|
|
|
public string? KcpHeaderType { get; init; }
|
|
public string? KcpSeed { get; init; }
|
|
}
|