OneConversorTemplate/UpperFirstLetter/Models/ErrorViewModel.cs
2025-06-08 12:44:02 -03:00

10 lines
201 B
C#

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