METAR-Web-App/Models/ErrorViewModel.cs
2021-09-20 19:51:39 +01:00

12 lines
212 B
C#

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