mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
23 lines
331 B
C#
23 lines
331 B
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web.Enums
|
|
{
|
|
[Flags]
|
|
public enum AlbumType
|
|
{
|
|
[String("album")]
|
|
Album = 1,
|
|
|
|
[String("single")]
|
|
Single = 2,
|
|
|
|
[String("compilation")]
|
|
Compilation = 4,
|
|
|
|
[String("appears_on")]
|
|
AppearsOn = 8,
|
|
|
|
[String("album,single,compilation,appears_on")]
|
|
All = 16
|
|
}
|
|
} |