yavsc/Yavsc/ApiControllers/DjProfileApiController.cs
2017-01-06 14:55:48 +01:00

14 lines
No EOL
292 B
C#

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