Files
yavsc/src/Api/Controllers/ProfileApiController.cs
2025-02-12 20:41:14 +00:00

18 lines
367 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Yavsc.ApiControllers
{
using Models;
/// <summary>
/// Base class for managing performers profiles
/// </summary>
[Produces("application/json"),Route("api/profile")]
public abstract class ProfileApiController<T> : Controller
{ public ProfileApiController()
{
}
}
}