mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-13 05:42:48 +01:00
16 lines
431 B
C#
16 lines
431 B
C#
namespace TweetDuck.Plugins.Enums{
|
|
enum PluginGroup{
|
|
Official, Custom
|
|
}
|
|
|
|
static class PluginGroupExtensions{
|
|
public static string GetIdentifierPrefix(this PluginGroup group){
|
|
switch(group){
|
|
case PluginGroup.Official: return "official/";
|
|
case PluginGroup.Custom: return "custom/";
|
|
default: return "unknown/";
|
|
}
|
|
}
|
|
}
|
|
}
|