lq1405 76b57c5717 新增get转发接口
新增Laitool 设置中的绘图设置
2025-02-22 15:00:25 +08:00

17 lines
461 B
C#

using LMS.Common.Enum;
namespace LMS.Common.Dictionary;
public class AllOptions
{
public static readonly Dictionary<string, List<string>> AllOptionsRequestQuery = new()
{
{ "all", [] },
{ "tts", ["EdgeTTsRoles"] },
{ "software", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent","LaitoolVersion"]},
{ "trial" , ["LaiToolTrialDays"] },
{ "image", [OptionKeyName.LaitoolFluxApiModelList] }
};
}