IF.Lastfm/IF.Lastfm.Core/Api/Helpers/ApiNameAttribute.cs

14 lines
256 B
C#
Raw Normal View History

2013-06-13 17:27:51 +01:00
using System;
namespace IF.Lastfm.Core.Api.Helpers
{
public class ApiNameAttribute : Attribute
{
public string Text { get; private set; }
public ApiNameAttribute(string name)
{
Text = name;
}
}
}