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