Coursach/Course/ImplementerApp/Models/ErrorViewModel.cs

9 lines
177 B
C#
Raw Normal View History

2024-04-28 17:11:40 +04:00
namespace ImplementerApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}