Spotify.NET/SpotifyAPI/SpoitfyLocalAPI/Enum.cs

25 lines
399 B
C#
Raw Normal View History

2014-01-08 22:22:54 +00:00
using System;
using System.Text;
namespace SpotifyAPI.SpotifyLocalAPI
2014-01-08 22:22:54 +00:00
{
2014-02-13 13:23:52 +00:00
/// <summary>
/// Enum for the AlbumArt
/// </summary>
2014-02-01 12:52:33 +00:00
public enum AlbumArtSize
2014-01-08 22:22:54 +00:00
{
2014-02-01 12:52:33 +00:00
SIZE_160,
SIZE_320,
SIZE_640
}
2014-02-13 13:23:52 +00:00
/// <summary>
/// Not implemented yet
/// </summary>
2014-02-01 12:52:33 +00:00
public enum CFIDResponse
{
SUCCESS,
ERROR,
NOT_LOGGED_IN
2014-01-08 22:22:54 +00:00
}
}