using System;
using System.Text;
namespace SpotifyAPI.SpotifyLocalAPI
{
///
/// Enum for the AlbumArt
///
public enum AlbumArtSize
{
SIZE_160,
SIZE_320,
SIZE_640
}
///
/// Not implemented yet
///
public enum CFIDResponse
{
SUCCESS,
ERROR,
NOT_LOGGED_IN
}
}