Spotify.NET/SpotifyAPI/Enum.cs

16 lines
255 B
C#
Raw Normal View History

2014-01-08 22:22:54 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SpotifyAPIv1
{
public enum SizeEnum
{
SIZE_160 = 160,
SIZE_320 = 320,
SIZE_640 = 640
}
}