mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-19 08:04:40 +03:00
8090799ccc
Move many model classes into new sub-namespaces (ServiceLib.Models.CoreConfigs, ServiceLib.Models.Configs, ServiceLib.Models.Dto, ServiceLib.Models.Entities). Update GlobalUsings in ServiceLib, v2rayN.Desktop, v2rayN and add a tests GlobalUsings file to reference the new namespaces. Adjust static using directives in ClashApiManager and ClashProxiesViewModel to use ServiceLib.Models.Dto. This is a reorganization/rename of files and namespaces with no functional changes.
20 lines
563 B
C#
20 lines
563 B
C#
namespace ServiceLib.Models.Entities;
|
|
|
|
public record TransportExtraItem
|
|
{
|
|
public string? RawHeaderType { 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; }
|
|
public int? KcpMtu { get; init; }
|
|
}
|