Former-commit-id: c105de65dd13fc2417bd790c75aef5bb63cd8757 [formerly e6a459ecdf1e839a2467c1c99ffe2cf3d38e5c2c] Former-commit-id: e6c6e55e89e4a753d54619d3869e253587357da5
11 lines
218 B
C#
11 lines
218 B
C#
using System;
|
|
|
|
namespace TerribleDev.Blog.Web.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |