All checks were successful
Build and Push Docker Image / docker (push) Successful in 48s
9 lines
170 B
C#
9 lines
170 B
C#
namespace Example.Models;
|
|
|
|
public class ErrorViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|