Files
2022-11-22 12:56:52 -05:00

12 lines
223 B
C#

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