2024-05-08 12:14:52 +04:00
|
|
|
namespace PizzeriaClientApp.Models
|
|
|
|
{
|
2024-05-22 02:01:59 +04:00
|
|
|
public class ErrorViewModel
|
|
|
|
{
|
|
|
|
public string? RequestId { get; set; }
|
2024-05-08 12:14:52 +04:00
|
|
|
|
2024-05-22 02:01:59 +04:00
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
}
|
2024-05-08 12:14:52 +04:00
|
|
|
}
|