11 lines
282 B
C#
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; }
|
|
}
|