This commit is contained in:
Ashley
2022-08-05 22:33:38 +03:00
committed by GitHub
parent d2874c2e5f
commit 63dab6176e
100 changed files with 12438 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace LightTube.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}