Spotify.NET/SpotifyAPI.Web.Examples.ASP/Models/ErrorViewModel.cs
2020-03-09 20:47:39 +01:00

11 lines
211 B
C#

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