mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 00:03:48 +00:00
26 lines
536 B
C#
26 lines
536 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WinAlfred.Plugin
|
|
{
|
|
public static class AllowedLanguage
|
|
{
|
|
public static string Python
|
|
{
|
|
get { return "python"; }
|
|
}
|
|
|
|
public static string CSharp
|
|
{
|
|
get { return "csharp"; }
|
|
}
|
|
|
|
public static bool IsAllowed(string language)
|
|
{
|
|
return language.ToUpper() == Python.ToUpper() || language.ToUpper() == CSharp.ToUpper();
|
|
}
|
|
}
|
|
}
|