view rank get endpoint client service method for movies added

This commit is contained in:
2024-09-22 00:05:40 +02:00
Unverified
parent 0b93765d12
commit 3c990b591d
8 changed files with 111 additions and 44 deletions

View File

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

View File

@@ -3,9 +3,10 @@
public class Movies
{
public string Base { get; set; }
public string GetAll { get; set; }
public string Get { get; set; }
public string Post { get; set; }
public string Put { get; set; }
public string Delete { get; set; }
public string GetAllMovies { get; set; }
public string GetMovie { get; set; }
public string PostMovie { get; set; }
public string PutMovie { get; set; }
public string DeleteMovie { get; set; }
public string GetMoviesViewRank { get; set; }
}

View File

@@ -0,0 +1,12 @@
namespace WatchIt.Website.Services.Utility.Configuration.Model;
public class Series
{
public string Base { get; set; }
public string GetAllSeries { get; set; }
public string GetSeries { get; set; }
public string PostSeries { get; set; }
public string PutSeries { get; set; }
public string DeleteSeries { get; set; }
public string GetSeriesViewRank { get; set; }
}