Files
VinFontApp/CDNVinApp/Models/ErrorViewModel.cs
2025-05-06 02:04:49 +07:00

10 lines
194 B
C#

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