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

15 lines
365 B
C#
Raw Normal View History

2023-03-19 17:57:55 +00:00
using Microsoft.AspNetCore.Mvc;
namespace Yavsc.ApiControllers
{
2017-02-27 19:28:32 +01:00
/// <summary>
/// Base class for managing performers profiles
/// </summary>
2026-08-20 20:50:52 +01:00
[Produces("application/json"),Route(Constants.APIPrefix + "/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
}