Files

28 lines
1.2 KiB
C#
Raw Normal View History

2024-10-06 01:37:07 +02:00
namespace WatchIt.Website.Services.Utility.Configuration.Model;
public class Roles
{
public string Base { get; set; }
2024-10-06 23:16:53 +02:00
public string GetActorRole { get; set; }
public string PutActorRole { get; set; }
public string DeleteActorRole { get; set; }
2024-10-20 00:32:35 +02:00
public string GetActorRoleRating { get; set; }
public string GetActorRoleRatingByUser { get; set; }
public string PutActorRoleRating { get; set; }
public string DeleteActorRoleRating { get; set; }
2024-10-06 16:41:06 +02:00
public string GetAllActorRoleTypes { get; set; }
public string GetActorRoleType { get; set; }
public string PostActorRoleType { get; set; }
public string DeleteActorRoleType { get; set; }
2024-10-06 23:16:53 +02:00
public string GetCreatorRole { get; set; }
public string PutCreatorRole { get; set; }
public string DeleteCreatorRole { get; set; }
2024-10-20 00:32:35 +02:00
public string GetCreatorRoleRating { get; set; }
public string GetCreatorRoleRatingByUser { get; set; }
public string PutCreatorRoleRating { get; set; }
public string DeleteCreatorRoleRating { get; set; }
2024-10-06 16:41:06 +02:00
public string GetAllCreatorRoleTypes { get; set; }
public string GetCreatorRoleType { get; set; }
public string PostCreatorRoleType { get; set; }
public string DeleteCreatorRoleType { get; set; }
2024-10-06 01:37:07 +02:00
}