mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 13:18:23 +01:00
11 lines
No EOL
186 B
C#
11 lines
No EOL
186 B
C#
using System;
|
|
|
|
namespace LightTube.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |