ASCU_ALL/ShowTrend_tmp3/ShowTrend3/Models/ErrorViewModel.cs
2021-11-12 15:00:41 +05:00

11 lines
208 B
C#

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