cloutier--bird.makeup/src/BirdsiteLive/Models/ErrorViewModel.cs
Nicolas Constant 75b6f32f87
init project
2020-03-21 00:39:32 -04:00

11 lines
211 B
C#

using System;
namespace BirdsiteLive.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}