added dotnetcore mvc

This commit is contained in:
2018-12-07 20:42:44 +01:00
parent 6b8297f208
commit cd74aceb88
20 changed files with 317 additions and 25 deletions

11
Models/ErrorViewModel.cs Normal file
View File

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