lampac/Shared/Models/Base/PosterApiConf.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

36 lines
780 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Shared.Models.Base
{
public class PosterApiConf : Iproxy
{
public string host { get; set; }
public bool rsize { get; set; }
public int height { get; set; }
public int width { get; set; }
/// <summary>
/// Проксить без изменения размера
/// </summary>
public string bypass { get; set; }
/// <summary>
/// Не проксить
/// </summary>
public string disable_rsize { get; set; }
#region proxy
public bool useproxy { get; set; }
public bool useproxystream { get; set; }
public string globalnameproxy { get; set; }
public ProxySettings proxy { get; set; }
#endregion
}
}