Files
ServicesCallService/WebMVC/Models/ErrorViewModel.cs
2020-10-16 22:55:16 -04:00

12 lines
205 B
C#

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