18 lines
352 B
C#
18 lines
352 B
C#
|
8 years ago
|
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();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|