IF.Lastfm/IF.Lastfm.Core/Api/Helpers/ApiNameAttribute.cs
2013-06-13 17:27:51 +01:00

14 lines
256 B
C#

using System;
namespace IF.Lastfm.Core.Api.Helpers
{
public class ApiNameAttribute : Attribute
{
public string Text { get; private set; }
public ApiNameAttribute(string name)
{
Text = name;
}
}
}