mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
14 lines
193 B
C#
14 lines
193 B
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web.Enums
|
|
{
|
|
[Flags]
|
|
public enum FollowType
|
|
{
|
|
[String("artist")]
|
|
Artist = 1,
|
|
|
|
[String("user")]
|
|
User = 2
|
|
}
|
|
} |