gender controller finished

This commit is contained in:
2024-10-05 09:12:28 +02:00
Unverified
parent b43b319855
commit 065c27642e
16 changed files with 389 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ public class Endpoints
{
public string Base { get; set; }
public Accounts Accounts { get; set; }
public Genders Genders { get; set; }
public Genres Genres { get; set; }
public Media Media { get; set; }
public Movies Movies { get; set; }

View File

@@ -0,0 +1,10 @@
namespace WatchIt.Website.Services.Utility.Configuration.Model;
public class Genders
{
public string Base { get; set; }
public string GetAllGenders { get; set; }
public string GetGender { get; set; }
public string PostGender { get; set; }
public string DeleteGender { get; set; }
}