role type endpoints rename

This commit is contained in:
2024-10-06 16:41:06 +02:00
Unverified
parent 6cae764d1d
commit 41b15abef1
11 changed files with 93 additions and 93 deletions

View File

@@ -3,12 +3,12 @@ namespace WatchIt.Website.Services.Utility.Configuration.Model;
public class Roles
{
public string Base { get; set; }
public string GetAllActorRoles { get; set; }
public string GetActorRole { get; set; }
public string PostActorRole { get; set; }
public string DeleteActorRole { get; set; }
public string GetAllCreatorRoles { get; set; }
public string GetCreatorRole { get; set; }
public string PostCreatorRole { get; set; }
public string DeleteCreatorRole { get; set; }
public string GetAllActorRoleTypes { get; set; }
public string GetActorRoleType { get; set; }
public string PostActorRoleType { get; set; }
public string DeleteActorRoleType { get; set; }
public string GetAllCreatorRoleTypes { get; set; }
public string GetCreatorRoleType { get; set; }
public string PostCreatorRoleType { get; set; }
public string DeleteCreatorRoleType { get; set; }
}