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