CourseWork_Bank/Bank/BankClientApp/Models/ErrorViewModel.cs

10 lines
198 B
C#

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