mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
16 lines
251 B
C#
16 lines
251 B
C#
using System;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field)]
|
|
public class StringAttribute : Attribute
|
|
{
|
|
public StringAttribute(string value)
|
|
{
|
|
Value = value;
|
|
}
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
}
|