lampac/Shared/Models/ServerProxy/ServerproxyConf.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

40 lines
929 B
C#

using Shared.Models.Base;
namespace Shared.Models.ServerProxy
{
public class ServerproxyConf : Iproxy
{
public bool enable { get; set; }
public bool encrypt { get; set; }
public bool encrypt_aes { get; set; }
public bool verifyip { get; set; }
public bool showOrigUri { get; set; }
public bool responseContentLength { get; set; }
public ServerproxyImageConf image { get; set; } = new ServerproxyImageConf();
public bool forced_apn { get; set; }
public ServerproxyBufferingConf buffering { get; set; } = new ServerproxyBufferingConf();
public int maxlength_m3u { get; set; }
public int maxlength_ts { get; set; }
public bool useproxy { get; set; }
public bool useproxystream { get; set; }
public string globalnameproxy { get; set; }
public ProxySettings proxy { get; set; }
}
}