UserPage created

This commit is contained in:
2024-10-28 00:35:32 +01:00
Unverified
parent b53f907310
commit 017b3ac185
28 changed files with 145 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
namespace WatchIt.Website.Services.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; }
}