Spotify.NET/SpotifyAPI.Web/Enums/FollowType.cs
2020-03-09 20:47:39 +01:00

14 lines
166 B
C#

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