Newer
Older
OutboxPattern / Models / ErrorViewModel.cs
@Derek Comartin Derek Comartin on 10 Mar 2022 205 bytes Init
using System;

namespace CAPDemo.Models
{
    public class ErrorViewModel
    {
        public string RequestId { get; set; }

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