lampac/Shared/Models/Online/VideoCDN/VCDNSettings.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

25 lines
565 B
C#

namespace Shared.Models.Online.VideoCDN
{
public class VCDNSettings
{
public VCDNSettings(string apihost, string token, string cdnhost, bool useproxy)
{
this.apihost = apihost;
this.token = token;
this.cdnhost = cdnhost;
this.useproxy = useproxy;
}
public string apihost { get; set; }
public string token { get; set; }
public string cdnhost { get; set; }
public bool useproxy { get; set; }
public bool streamproxy { get; set; }
}
}