gender controller finished
This commit is contained in:
@@ -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; }
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user