Projektdateien hinzufügen.

This commit is contained in:
Jonathan Jenne
2021-09-15 16:21:04 +02:00
parent 0a8c916f89
commit aa78a86975
93 changed files with 57547 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ChangeloggerMVC.Models
{
public class ChangelogEntryModel
{
public int ModuleId { get; set; }
public int TypeId { get; set; }
public string EntryText { get; set; }
public string Version { get; set; }
}
}

View File

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