SoftwayWeb/Models/ErrorViewModel.cs
2024-06-25 11:32:53 +02:00

11 lines
239 B
C#

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