14 lines
508 B
C#
14 lines
508 B
C#
|
|
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; }
|
||
|
|
}
|