12 lines
330 B
C#
Raw Normal View History

2024-10-18 12:44:12 +08:00
namespace LMS.Common.Dictionary;
public class AllOptions
{
public static readonly Dictionary<string, List<string>> AllOptionsRequestQuery = new()
{
{ "all", [] },
{ "tts", ["EdgeTTsRoles"] },
{ "software", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent","LaitoolVersion"]}
};
}