mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
18 lines
317 B
C#
18 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.SpotifyWebAPI
|
|
{
|
|
[Flags]
|
|
public enum FollowType
|
|
{
|
|
[StringAttribute("artist")]
|
|
ARTIST = 1,
|
|
[StringAttribute("user")]
|
|
USER = 2
|
|
}
|
|
}
|