view rank get endpoint client service method for movies added
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user