9 lines
206 B
C#
Raw Normal View History

2024-04-03 21:04:46 +04:00
namespace SewingDressesClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}