22 lines
914 B
C#
22 lines
914 B
C#
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
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; }
|
|
public string PostPersonsView { get; set; }
|
|
public string GetPersonPhoto { get; set; }
|
|
public string PutPersonPhoto { get; set; }
|
|
public string DeletePersonPhoto { get; set; }
|
|
public string GetPersonAllActorRoles { get; set; }
|
|
public string PostPersonActorRole { get; set; }
|
|
public string GetPersonAllCreatorRoles { get; set; }
|
|
public string PostPersonCreatorRole { get; set; }
|
|
public string GetPersonGlobalRating { get; set; }
|
|
public string GetPersonUserRating { get; set; }
|
|
} |