mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
22 lines
336 B
C#
22 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPIv1
|
|
{
|
|
public enum AlbumArtSize
|
|
{
|
|
SIZE_160,
|
|
SIZE_320,
|
|
SIZE_640
|
|
}
|
|
public enum CFIDResponse
|
|
{
|
|
SUCCESS,
|
|
ERROR,
|
|
NOT_LOGGED_IN
|
|
}
|
|
}
|