2017-01-13 16:31:40 +01:00
|
|
|
namespace Yavsc.ApiControllers
|
|
|
|
|
{
|
|
|
|
|
using Models;
|
2017-02-12 22:20:57 +01:00
|
|
|
using Models.Musical.Profiles;
|
2017-01-13 16:31:40 +01:00
|
|
|
|
|
|
|
|
public class DjProfileApiController : ProfileApiController<DjSettings>
|
|
|
|
|
{
|
|
|
|
|
public DjProfileApiController(ApplicationDbContext context) : base(context)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-06 14:02:17 +01:00
|
|
|
}
|