Spotify.NET/SpotifyAPI/Enum.cs

19 lines
253 B
C#
Raw Normal View History

2014-01-08 22:22:54 +00:00
using System;
using System.Text;
namespace SpotifyAPIv1
{
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
}
public enum CFIDResponse
{
SUCCESS,
ERROR,
NOT_LOGGED_IN
2014-01-08 22:22:54 +00:00
}
}