21 lines
854 B
C#
21 lines
854 B
C#
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
public class Media
|
|
{
|
|
public string Base { get; set; }
|
|
public string GetMedia { get; set; }
|
|
public string GetMediaGenres { get; set; }
|
|
public string PostMediaGenre { get; set; }
|
|
public string DeleteMediaGenre { get; set; }
|
|
public string GetMediaRating { get; set; }
|
|
public string GetMediaRatingByUser { get; set; }
|
|
public string PutMediaRating { get; set; }
|
|
public string DeleteMediaRating { get; set; }
|
|
public string PostMediaView { get; set; }
|
|
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; }
|
|
} |