ScientificReport
ErrorViewModel.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace ScientificReport.DTO.Models
4 {
5  public class ErrorViewModel
6  {
7  public string RequestId { get; set; }
8 
9  public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
10  }
11 }