Spotify.NET/SpotifyAPI.Web/Enums/FollowType.cs

14 lines
166 B
C#
Raw Normal View History

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