yavsc/src/Yavsc.Server/Models/ErrorViewModel.cs
Paul Schneider 786016344b
Some checks failed
Dotnet build and test / log-the-inputs (pull_request) Has been cancelled
Dotnet build and test / build (pull_request) Has been cancelled
refacto error handling
2026-07-12 17:56:23 +01:00

11 lines
282 B
C#

namespace Yavsc.Models;
public class ErrorViewModel
{
public string? RequestId { get; set; }
public string? Description { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
public Dictionary<string, string> ModelErrors { get; set; }
}