CourseWork_SchoolStudyAgain/SchoolAgainStudy/StudentWebClient/Models/ErrorViewModel.cs

9 lines
200 B
C#
Raw Normal View History

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