forked from adam/discord-bot-shtik
9 lines
182 B
C#
9 lines
182 B
C#
namespace vassago.Models;
|
|
|
|
public class ErrorPageViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|