ibms-dome/Backend/Models/ErrorViewModel.cs

12 lines
206 B
C#
Raw Normal View History

2022-10-14 16:08:54 +08:00
using System;
namespace Backend.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}