Files
AlquilaFacil/Models/ErrorViewModel.cs
2024-08-30 03:19:36 -03:00

12 lines
186 B
C#

namespace Modelo
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}