HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Main/Models/ErrorViewModel.cs
Im_Alpha fa5282b074 initial batch
setting up sql configuration
2021-12-05 23:41:27 -08:00

9 lines
220 B
C#

namespace TeamHobby.HobbyProjectGenerator.Main.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}