2023-03-19 17:57:55 +00:00
|
|
|
namespace Yavsc.Models;
|
|
|
|
|
|
|
|
|
|
public class ErrorViewModel
|
|
|
|
|
{
|
2025-09-14 00:41:35 +01:00
|
|
|
public string? RequestId { get; set; }
|
|
|
|
|
public string? Description { get; set; }
|
2023-03-19 17:57:55 +00:00
|
|
|
|
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
|
|
|
|
|
|
}
|