mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
25 lines
385 B
C#
25 lines
385 B
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace SpotifyAPIv1
|
|
{
|
|
/// <summary>
|
|
/// Enum for the AlbumArt
|
|
/// </summary>
|
|
public enum AlbumArtSize
|
|
{
|
|
SIZE_160,
|
|
SIZE_320,
|
|
SIZE_640
|
|
}
|
|
/// <summary>
|
|
/// Not implemented yet
|
|
/// </summary>
|
|
public enum CFIDResponse
|
|
{
|
|
SUCCESS,
|
|
ERROR,
|
|
NOT_LOGGED_IN
|
|
}
|
|
}
|