forked from adam/discord-bot-shtik
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
9 lines
194 B
C#
9 lines
194 B
C#
namespace vassago.WebInterface.Models;
|
|
|
|
public class ErrorPageViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|