12 lines
279 B
C#
12 lines
279 B
C#
namespace Yavsc.ApiControllers
|
|
{
|
|
using Models;
|
|
using Models.Musical.Profiles;
|
|
|
|
public class DjProfileApiController : ProfileApiController<DjSettings>
|
|
{
|
|
public DjProfileApiController(ApplicationDbContext context) : base(context)
|
|
{
|
|
}
|
|
}
|
|
} |