person controller finished
This commit is contained in:
@@ -9,4 +9,5 @@ public class Endpoints
|
||||
public Movies Movies { get; set; }
|
||||
public Series Series { get; set; }
|
||||
public Photos Photos { get; set; }
|
||||
public Persons Persons { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user