2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Configuration.Model;
|
2024-07-03 22:18:32 +02:00
|
|
|
|
|
|
|
|
|
|
public class Media
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Base { get; set; }
|
2024-10-08 02:14:16 +02:00
|
|
|
|
public string GetAllMedia { get; set; }
|
2024-09-25 22:11:28 +02:00
|
|
|
|
public string GetMedia { get; set; }
|
|
|
|
|
|
public string GetMediaGenres { get; set; }
|
|
|
|
|
|
public string PostMediaGenre { get; set; }
|
|
|
|
|
|
public string DeleteMediaGenre { 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-09-25 22:11:28 +02:00
|
|
|
|
public string GetMediaPoster { get; set; }
|
|
|
|
|
|
public string PutMediaPoster { get; set; }
|
|
|
|
|
|
public string DeleteMediaPoster { get; set; }
|
|
|
|
|
|
public string GetMediaPhotos { get; set; }
|
|
|
|
|
|
public string GetMediaPhotoRandomBackground { get; set; }
|
|
|
|
|
|
public string PostMediaPhoto { get; set; }
|
2024-10-06 23:16:53 +02:00
|
|
|
|
public string GetMediaAllActorRoles { get; set; }
|
|
|
|
|
|
public string PostMediaActorRole { get; set; }
|
|
|
|
|
|
public string GetMediaAllCreatorRoles { get; set; }
|
|
|
|
|
|
public string PostMediaCreatorRole { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
}
|