yavsc/src/Yavsc.Org/Controllers/Haircut/BrusherProfileController.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

17 lines
384 B
C#

using Yavsc.Models;
using Yavsc.Models.Haircut;
using Microsoft.AspNetCore.Authorization;
using Yavsc.Controllers.Generic;
namespace Yavsc.Controllers
{
[Authorize("Performer")]
public class BrusherProfileController : SettingsController<BrusherProfile>
{
public BrusherProfileController(ApplicationDbContext context) : base(context)
{
}
}
}