CourseWork_SchoolStudyAgain/SchoolAgainStudy/TeacherWebClient/Models/ErrorViewModel.cs
2023-05-17 21:29:39 +04:00

9 lines
179 B
C#

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