yavsc/Yavsc/ApiControllers/DjProfileApiController.cs

14 lines
292 B
C#

namespace Yavsc.ApiControllers
{
using Models;
using Models.Booking;
public class DjProfileApiController : ProfileApiController<DjPerformerProfile>
{
public DjProfileApiController(ApplicationDbContext context) : base(context)
{
}
}
}