mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 14:48:33 +01: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);
|
||
|
}
|
||
|
}
|