mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 00:57:59 +00:00
11 lines
186 B
C#
11 lines
186 B
C#
using System;
|
|
|
|
namespace LightTube.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |