zhaw-dnet2/Tasks/Lab10/RankingService/RankingWebApp/Models/ErrorViewModel.cs

10 lines
198 B
C#

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