Newer
Older
BarcodeXlsx / barcode3 / Models / ErrorViewModel.cs
@Kunihiro Narita Kunihiro Narita on 20 Aug 2020 207 bytes .NET Core 3.1ベースに変更
using System;

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

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