Upload files to 'ShipyardClientApp/Models'

This commit is contained in:
Ivan_Starostin 2024-06-02 17:26:26 +04:00
parent 872639f8ee
commit 193577c08f

View File

@ -0,0 +1,9 @@
namespace ShipyardClientApp.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}