2023-03-31 20:13:22 +04:00
|
|
|
namespace BankYouBankruptClientApp.Models
|
|
|
|
{
|
2023-04-02 01:17:44 +04:00
|
|
|
public class ErrorViewModel
|
|
|
|
{
|
|
|
|
public string? RequestId { get; set; }
|
2023-03-31 20:13:22 +04:00
|
|
|
|
2023-04-02 01:17:44 +04:00
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
}
|
2023-03-31 20:13:22 +04:00
|
|
|
}
|