This commit is contained in:
2021-11-12 15:00:41 +05:00
parent 78b2f5ac24
commit 0e645d20e2
519 changed files with 176134 additions and 852 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace ShowTrend3.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}