2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Configuration.Model;
|
2024-10-03 16:18:17 +02:00
|
|
|
|
|
|
|
|
|
|
public class Persons
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Base { get; set; }
|
|
|
|
|
|
public string GetAllPersons { get; set; }
|
|
|
|
|
|
public string GetPerson { get; set; }
|
|
|
|
|
|
public string PostPerson { get; set; }
|
|
|
|
|
|
public string PutPerson { get; set; }
|
|
|
|
|
|
public string DeletePerson { get; set; }
|
|
|
|
|
|
public string GetPersonsViewRank { get; set; }
|
2024-10-19 17:29:36 +02:00
|
|
|
|
public string PostPersonsView { get; set; }
|
2024-10-03 21:05:04 +02:00
|
|
|
|
public string GetPersonPhoto { get; set; }
|
|
|
|
|
|
public string PutPersonPhoto { get; set; }
|
|
|
|
|
|
public string DeletePersonPhoto { get; set; }
|
2024-10-06 23:16:53 +02:00
|
|
|
|
public string GetPersonAllActorRoles { get; set; }
|
|
|
|
|
|
public string PostPersonActorRole { get; set; }
|
|
|
|
|
|
public string GetPersonAllCreatorRoles { get; set; }
|
|
|
|
|
|
public string PostPersonCreatorRole { get; set; }
|
2024-10-23 02:39:15 +02:00
|
|
|
|
public string GetPersonGlobalRating { get; set; }
|
|
|
|
|
|
public string GetPersonUserRating { get; set; }
|
2024-10-03 16:18:17 +02:00
|
|
|
|
}
|