still refactoring

This commit is contained in:
Paul Schneider 2018-05-04 10:45:45 +02:00
commit 6e6aca44f0
36 changed files with 303 additions and 324 deletions

View file

@ -0,0 +1,12 @@
using Yavsc.Abstract.Templates;
using Yavsc.Models;
using System.Threading.Tasks;
namespace Yavsc.Templates
{
public abstract class UserOrientedTemplate: Template
{
public ApplicationUser User { get; set; }
}
}