mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
0b78f12df3
- New Namespaces -> SpotifyAPI.SpotifyLocalAPI -> SpotifyAPI.SpotifyWebAPI -> SpotifyAPI.SpotifyWebAPI.Models - Wiki created, examples coming soon - Added example for the new Web API - README updated
25 lines
399 B
C#
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
|
|
}
|
|
}
|