This commit is contained in:
Paul Schneider 2018-04-26 05:20:08 +02:00
commit 949bdf8604
15 changed files with 1370 additions and 234 deletions

View file

@ -0,0 +1,17 @@
using Yavsc.Abstract.Templates;
using Yavsc.Models;
using System.Threading.Tasks;
namespace Yavsc.Templates
{
public class UserOrientedTemplate: Template
{
public ApplicationUser User { get; set; }
public override Task ExecuteAsync ()
{
throw new System.NotImplementedException();
}
}
}