9 lines
202 B
C#
9 lines
202 B
C#
|
|
namespace YB.DeviceStand.Web.Models
|
||
|
|
{
|
||
|
|
public class ErrorViewModel
|
||
|
|
{
|
||
|
|
public string? RequestId { get; set; }
|
||
|
|
|
||
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||
|
|
}
|
||
|
|
}
|