Spotify.NET/SpotifyAPI/SpotifyWebAPI/SearchType.cs

22 lines
438 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SpotifyAPI.SpotifyWebAPI
{
[Flags]
public enum SearchType
{
[StringAttribute("artist")]
ARTIST = 1,
[StringAttribute("album")]
ALBUM = 2,
[StringAttribute("track")]
TRACK = 4,
[StringAttribute("track,album,artist")]
ALL = 8
}
}