yavsc/src/Yavsc.Server/ViewModels/Auth/DeletePermission.cs

12 lines
211 B
C#
Raw Normal View History

2023-03-19 17:57:55 +00:00
using Microsoft.AspNetCore.Authorization;
2017-01-19 12:59:49 +01:00
namespace Yavsc.ViewModels.Auth
2017-01-19 12:59:49 +01:00
{
2025-02-23 20:23:23 +00:00
public class DeletePermission: IAuthorizationRequirement
2017-01-19 12:59:49 +01:00
{
2025-02-23 20:23:23 +00:00
public DeletePermission()
2017-01-19 12:59:49 +01:00
{
}
}
2025-02-23 20:23:23 +00:00
2023-03-19 17:57:55 +00:00
}