Projektdateien hinzufügen.

This commit is contained in:
2020-06-03 22:44:52 +02:00
parent 8852a91eaf
commit a15eb0585a
60 changed files with 40483 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace MultipleChoiceTrainer.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}