2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Configuration.Model;
|
2024-07-03 22:18:32 +02:00
|
|
|
|
|
|
|
|
|
|
public class Movies
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Base { get; set; }
|
2024-09-22 00:05:40 +02:00
|
|
|
|
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; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
}
|