f1e4cca535
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
11 lines
207 B
C#
Executable File
11 lines
207 B
C#
Executable File
using System;
|
|
|
|
namespace aspnetapp.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |