mirror of
https://github.com/2dust/v2rayN.git
synced 2026-07-26 09:52:05 +03:00
13 lines
371 B
C#
13 lines
371 B
C#
namespace ServiceLib.Models.Dto;
|
|
|
|
public sealed class NetBridgeRuleConfig
|
|
{
|
|
public uint RuleId { get; set; }
|
|
public string ProcessName { get; set; }
|
|
public string TargetHosts { get; set; }
|
|
public string TargetPorts { get; set; }
|
|
public string Protocol { get; set; }
|
|
public string Action { get; set; }
|
|
public uint ProxyConfigId { get; set; }
|
|
}
|