12 lines
330 B
C#
12 lines
330 B
C#
|
|
namespace LMS.Common.Dictionary;
|
|||
|
|
|
|||
|
|
public class AllOptions
|
|||
|
|
{
|
|||
|
|
public static readonly Dictionary<string, List<string>> AllOptionsRequestQuery = new()
|
|||
|
|
{
|
|||
|
|
{ "all", [] },
|
|||
|
|
{ "tts", ["EdgeTTsRoles"] },
|
|||
|
|
{ "software", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent","LaitoolVersion"]}
|
|||
|
|
};
|
|||
|
|
}
|