2025-02-23 21:06:25 +08:00
|
|
|
|
using LMS.Common.Enum;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LMS.Common.Dictionary;
|
2024-10-18 12:44:12 +08:00
|
|
|
|
|
|
|
|
|
|
public class SimpleOptions
|
|
|
|
|
|
{
|
|
|
|
|
|
public static readonly Dictionary<string, List<string>> SimpleOptionsRequestQuery = new()
|
|
|
|
|
|
{
|
|
|
|
|
|
{ "ttsrole", ["EdgeTTsRoles"] },
|
|
|
|
|
|
{ "laitoolinfo", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent", "LaitoolVersion"] },
|
2025-02-23 21:06:25 +08:00
|
|
|
|
{ OptionKeyName.LaitoolFluxApiModelList, [OptionKeyName.LaitoolFluxApiModelList] }
|
2024-10-18 12:44:12 +08:00
|
|
|
|
};
|
2024-10-30 15:34:18 +08:00
|
|
|
|
}
|