IF.Lastfm/IF.Lastfm.Core/Api/Enums/LastStatsTimeSpan.cs

25 lines
385 B
C#
Raw Normal View History

2013-06-13 17:27:51 +01:00
using IF.Lastfm.Core.Api.Helpers;
namespace IF.Lastfm.Core.Api.Enums
{
public enum LastStatsTimeSpan
{
[ApiName("overall")]
Overall,
[ApiName("7day")]
Week,
[ApiName("1month")]
Month,
[ApiName("3month")]
Quarter,
[ApiName("6month")]
Half,
[ApiName("12month")]
Year
}
}