CourseWork/University/UniversityClientAppWorker/Models/ErrorViewModel.cs

10 lines
210 B
C#

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