mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
49441bba95
Organised using statements alphabetically
16 lines
287 B
C#
16 lines
287 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public abstract class BasicModel
|
|
{
|
|
[JsonProperty("error")]
|
|
public Error Error { get; set; }
|
|
|
|
public Boolean HasError()
|
|
{
|
|
return Error != null;
|
|
}
|
|
}
|
|
} |