yavsc/src/Yavsc/Controllers/Haircut/BrusherProfileController.cs

17 lines
390 B
C#
Raw Normal View History

2018-05-04 13:56:22 +02:00
using Yavsc.Models;
using Yavsc.Models.Haircut;
2023-03-19 17:57:55 +00:00
using Microsoft.AspNetCore.Authorization;
2018-05-04 13:56:22 +02:00
using Yavsc.Controllers.Generic;
namespace Yavsc.Controllers
{
[Authorize(Roles="Performer")]
public class BrusherProfileController : SettingsController<BrusherProfile>
{
public BrusherProfileController(ApplicationDbContext context) : base(context)
{
}
}
}