ErrorViewModel.cs 209 B

1234567891011
  1. using System;
  2. namespace ZmajService.Models
  3. {
  4. public class ErrorViewModel
  5. {
  6. public string RequestId { get; set; }
  7. public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
  8. }
  9. }