vassago/WebInterface/Models/ErrorPageViewModel.cs
adam 3ed37959ad
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
fixed most compiler complaints in discord interface
2025-02-25 23:45:30 -05:00

9 lines
194 B
C#

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