Files
tv7playlist/Models/ErrorViewModel.cs

11 lines
219 B
C#

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