13 lines
287 B
C#
13 lines
287 B
C#
using SWAD.API.Consts.Enums;
|
|
|
|
namespace TelegramBot;
|
|
|
|
public static class EnumExtensions
|
|
{
|
|
public static List<MusicService> Another(this MusicService service)
|
|
{
|
|
var list = Enum.GetValues<MusicService>().ToList();
|
|
list.Remove(service);
|
|
return list;
|
|
}
|
|
} |