NetCoreTemplate/APP_WEB/Models/ErrorViewModel.cs

18 lines
369 B
C#
Raw Normal View History

2025-05-12 06:06:47 +03:00
/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 06:05:33
* Version: 1.0.5
*/
2025-03-02 08:59:35 +03:00
namespace AppWeb.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}