Newer
Older
BarcodeXlsx / barcode / Models / ErrorViewModel.cs
@Kunihiro Narita Kunihiro Narita on 15 Jul 2019 205 bytes Add Blank Web Page
using System;

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

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