Spotify.NET/SpotifyAPI.Web.Examples.ASP/Models/ErrorViewModel.cs

12 lines
226 B
C#

using System;
namespace SpotifyAPI.Web.Examples.ASP.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}