METAR-Web-App/Models/ErrorViewModel.cs

12 lines
212 B
C#
Raw Normal View History

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