Files
RS_System/RS_system/Models/ErrorViewModel.cs
2026-01-10 23:14:51 -06:00

8 lines
171 B
C#

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