Files
rent-a-car/RentACar/WebApp/Models/ErrorViewModel.cs
ani_konarcheva@abv.bg 982a6a66dd firstCommit
2022-03-25 16:24:21 +02:00

12 lines
202 B
C#

using System;
namespace API.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}