namespace VoiceHubLanDesktop.Models;
///
/// 插件设置
///
public sealed class PluginSettings
{
///
/// API 地址
///
public string ApiUrl { get; set; } = "https://voicehub.lao-shui.top/api/songs/public";
///
/// 是否显示点歌人
///
public bool ShowRequester { get; set; } = true;
///
/// 是否显示投票数
///
public bool ShowVoteCount { get; set; } = false;
///
/// 刷新间隔(分钟)
///
public int RefreshIntervalMinutes { get; set; } = 60;
}