2024-11-06 01:27:34 +04:00
|
|
|
namespace CandidateReviewClientApp.Models
|
|
|
|
{
|
|
|
|
public class ErrorViewModel
|
|
|
|
{
|
|
|
|
public string? RequestId { get; set; }
|
2024-12-09 02:10:45 +04:00
|
|
|
public string? ErrorMessage { get; set; }
|
2024-11-06 01:27:34 +04:00
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
}
|
|
|
|
}
|