CourseWork_Bank/Bank/BankOperatorApp/Models/ErrorViewModel.cs
2023-04-07 19:49:24 +04:00

9 lines
199 B
C#

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