2024-07-03 22:18:32 +02:00
|
|
|
|
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
|
|
|
|
|
|
|
|
public class Media
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Base { get; set; }
|
2024-09-19 13:36:01 +02:00
|
|
|
|
public string Get { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
public string GetGenres { get; set; }
|
|
|
|
|
|
public string PostGenre { get; set; }
|
|
|
|
|
|
public string DeleteGenre { get; set; }
|
2024-09-20 23:37:55 +02:00
|
|
|
|
public string GetMediaRating { get; set; }
|
|
|
|
|
|
public string GetMediaRatingByUser { get; set; }
|
|
|
|
|
|
public string PutMediaRating { get; set; }
|
|
|
|
|
|
public string DeleteMediaRating { get; set; }
|
2024-09-21 21:11:21 +02:00
|
|
|
|
public string PostMediaView { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
public string GetPhotoMediaRandomBackground { get; set; }
|
2024-09-11 15:59:13 +02:00
|
|
|
|
public string GetPoster { get; set; }
|
|
|
|
|
|
public string PutPoster { get; set; }
|
|
|
|
|
|
public string DeletePoster { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
public string GetPhoto { get; set; }
|
|
|
|
|
|
public string GetPhotos { get; set; }
|
|
|
|
|
|
public string GetPhotoRandomBackground { get; set; }
|
|
|
|
|
|
public string PostPhoto { get; set; }
|
|
|
|
|
|
public string PutPhoto { get; set; }
|
|
|
|
|
|
public string DeletePhoto { get; set; }
|
|
|
|
|
|
}
|