Spotify.NET/SpotifyAPI/SpoitfyLocalAPI/Enum.cs
Johnny @PC 0b78f12df3 Added support for Spotify's Web API
- New Namespaces
   -> SpotifyAPI.SpotifyLocalAPI
   -> SpotifyAPI.SpotifyWebAPI
   -> SpotifyAPI.SpotifyWebAPI.Models
- Wiki created, examples coming soon
- Added example for the new Web API
- README updated
2014-07-20 22:42:46 +02:00

25 lines
399 B
C#

using System;
using System.Text;
namespace SpotifyAPI.SpotifyLocalAPI
{
/// <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
}
}