2023-04-25 08:27:59 +04:00

8 lines
178 B
C#

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