17 lines
461 B
C#
Raw Normal View History


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"] },
{ "software", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent","LaitoolVersion"]},
{ "trial" , ["LaiToolTrialDays"] },
{ "image", [OptionKeyName.LaitoolFluxApiModelList] }
2024-10-18 12:44:12 +08:00
};
}