12 lines
324 B
C#
12 lines
324 B
C#
|
|
namespace LMS.Common.Dictionary;
|
|||
|
|
|
|||
|
|
public class SimpleOptions
|
|||
|
|
{
|
|||
|
|
public static readonly Dictionary<string, List<string>> SimpleOptionsRequestQuery = new()
|
|||
|
|
{
|
|||
|
|
{ "ttsrole", ["EdgeTTsRoles"] },
|
|||
|
|
{ "laitoolinfo", ["LaitoolHomePage", "LaitoolNotice", "LaitoolUpdateContent", "LaitoolVersion"] },
|
|||
|
|
};
|
|||
|
|
}
|
|||
|
|
|