parking-html/Parking_spaces/Models/ErrorViewModel.cs

9 lines
198 B
C#
Raw Normal View History

2024-10-01 02:34:26 +08:00
namespace Parking_spaces.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}