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

15 lines
249 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
{
2025-06-08 14:41:50 +01:00
public class UserOrientedTemplate: Template
2018-04-26 05:20:08 +02:00
{
public ApplicationUser User { get; set; }
2025-06-08 14:41:50 +01:00
2018-04-26 05:20:08 +02:00
}
2025-06-08 14:41:50 +01:00
2018-04-26 05:20:08 +02:00
}