source: Application/Models/DatabaseModels/ErrorViewModel.cs

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 17 months ago

Initial commit

  • Property mode set to 100644
File size: 198 bytes
RevLine 
[f5f7c24]1namespace Models.DatabaseModels
2{
3 public class ErrorViewModel
4 {
5 public string? RequestId { get; set; }
6
7 public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
8 }
9}
Note: See TracBrowser for help on using the repository browser.