summaryrefslogtreecommitdiffstats
path: root/solve/PhotoEditor/Models/ErrorViewModel.cs
blob: b4fec483c84320c4a5d4d3c39a6917ec23c2578f (plain) (blame)
1
2
3
4
5
6
7
8
namespace PhotoEditor.Models;

public class ErrorViewModel
{
    public string? RequestId { get; set; }

    public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}