2025-02-22 15:00:25 +08:00
|
|
|
|
|
|
|
|
|
|
using LMS.Common.Enum;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LMS.Common.Dictionary;
|
2024-10-18 12:44:12 +08:00
|
|
|
|
|
|
|
|
|
|
public class AllOptions
|
|
|
|
|
|
{
|
|
|
|
|
|
public static readonly Dictionary<string, List<string>> AllOptionsRequestQuery = new()
|
|
|
|
|
|
{
|
|
|
|
|
|
{ "all", [] },
|
|
|
|
|
|
{ "tts", ["EdgeTTsRoles"] },
|
2024-11-13 14:00:39 +08:00
|
|
|
|
{ "software", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent","LaitoolVersion"]},
|
2025-02-22 15:00:25 +08:00
|
|
|
|
{ "trial" , ["LaiToolTrialDays"] },
|
|
|
|
|
|
{ "image", [OptionKeyName.LaitoolFluxApiModelList] }
|
2024-10-18 12:44:12 +08:00
|
|
|
|
};
|
|
|
|
|
|
}
|