yavsc/src/Yavsc.Server/Templates/UserOrientedTemplate.cs

12 lines
250 B
C#
Raw Normal View History

2021-05-30 13:48:24 +01:00
using System;
using System.Collections.Generic;
2018-04-26 05:20:08 +02:00
using Yavsc.Abstract.Templates;
using Yavsc.Models;
namespace Yavsc.Templates
{
2018-05-04 10:45:45 +02:00
public abstract class UserOrientedTemplate: Template
2018-04-26 05:20:08 +02:00
{
public ApplicationUser User { get; set; }
}
}