11 lines
208 B
C#
11 lines
208 B
C#
using System;
|
|
|
|
namespace ShowTrend3.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |