Files
gerencia-projetos/GerenciaProjetos/Models/ErrorViewModel.cs
2019-09-21 17:03:29 -03:00

11 lines
214 B
C#

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