kamihama-server/KamihamaWeb/Models/ErrorViewModel.cs

12 lines
210 B
C#

using System;
namespace KamihamaWeb.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}