yavsc/src/Yavsc/ApiControllers/ProfileApiController.cs

17 lines
363 B
C#
Raw Normal View History

using Microsoft.AspNet.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
}