Coursach/Course/ImplementerApp/Models/ErrorViewModel.cs
2024-04-28 17:11:40 +04:00

9 lines
177 B
C#

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