lampac/Shared/Models/Online/Settings/KinobaseSettings.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
559 B
C#

using Shared.Models.Base;
namespace Shared.Models.Online.Settings
{
public class KinobaseSettings : BaseSettings
{
public KinobaseSettings(string plugin, string host, bool playerjs, bool hdr)
{
enable = true;
this.plugin = plugin;
if (host != null)
this.host = host.StartsWith("http") ? host : Decrypt(host);
this.playerjs = playerjs;
this.hdr = hdr;
}
public bool playerjs { get; set; }
public bool hdr { get; set; }
}
}