This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Models/ErrorPageViewModel.cs
2023-07-03 12:51:23 -04:00

9 lines
182 B
C#

namespace vassago.Models;
public class ErrorPageViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}