yavsc/src/Yavsc.Api/Controllers/ProfileApiController.cs

17 lines
367 B
C#
Raw Normal View History

2023-03-19 17:57:55 +00:00
using Microsoft.AspNetCore.Mvc;
namespace Yavsc.ApiControllers
{
using Models;
2017-02-27 19:28:32 +01:00
/// <summary>
/// Base class for managing performers profiles
/// </summary>
[Produces("application/json"),Route("api/profile")]
public abstract class ProfileApiController<T> : Controller
2020-10-09 19:35:39 +01:00
{ public ProfileApiController()
{
}
}
2020-10-09 19:35:39 +01:00
}