Projektdateien hinzufügen.
This commit is contained in:
15
ChangeloggerCSharp/Models/ChangelogEntryModel.cs
Normal file
15
ChangeloggerCSharp/Models/ChangelogEntryModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
11
ChangeloggerCSharp/Models/ErrorViewModel.cs
Normal file
11
ChangeloggerCSharp/Models/ErrorViewModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace ChangeloggerMVC.Models
|
||||
{
|
||||
public class ErrorViewModel
|
||||
{
|
||||
public string RequestId { get; set; }
|
||||
|
||||
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user