mirror of
https://github.com/docker/awesome-compose.git
synced 2025-05-05 15:32:49 +00:00
11 lines
207 B
C#
Executable File
11 lines
207 B
C#
Executable File
using System;
|
|
|
|
namespace aspnetapp.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
} |