1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 02:38:07 +02:00
awesome-compose/aspnet-mssql/app/aspnetapp/Models/ErrorViewModel.cs

11 lines
207 B
C#
Raw Normal View History

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