Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Models/ErrorViewModel.cs

11 lines
210 B
C#
Raw Normal View History

2020-06-09 20:21:37 +00:00
using System;
namespace ThAmCo.Stock.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}