roles endpoints client methods created
This commit is contained in:
@@ -11,4 +11,5 @@ public class Endpoints
|
||||
public Series Series { get; set; }
|
||||
public Photos Photos { get; set; }
|
||||
public Persons Persons { get; set; }
|
||||
public Roles Roles { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user