Spotify.NET/SpotifyAPI/Enum.cs
2014-02-01 13:52:33 +01:00

22 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SpotifyAPIv1
{
public enum AlbumArtSize
{
SIZE_160,
SIZE_320,
SIZE_640
}
public enum CFIDResponse
{
SUCCESS,
ERROR,
NOT_LOGGED_IN
}
}