Spotify.NET/SpotifyAPI.Web/Enums/FollowType.cs
2018-08-24 14:10:13 +02:00

14 lines
193 B
C#

using System;
namespace SpotifyAPI.Web.Enums
{
[Flags]
public enum FollowType
{
[String("artist")]
Artist = 1,
[String("user")]
User = 2
}
}