yavsc/src/Yavsc.Server/Models/ErrorViewModel.cs

11 lines
282 B
C#
Raw Normal View History

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);
2026-07-12 17:56:23 +01:00
public Dictionary<string, string> ModelErrors { get; set; }
2023-03-19 17:57:55 +00:00
}