Files

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