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/WebInterface/Models/ErrorPageViewModel.cs

9 lines
194 B
C#

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