UserPage created

This commit is contained in:
2024-10-28 00:35:32 +01:00
Unverified
parent b53f907310
commit 017b3ac185
28 changed files with 145 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
namespace WatchIt.Website.Services.Configuration.Model;
public class Media
{
public string Base { get; set; }
public string GetAllMedia { 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; }
public string GetMediaAllActorRoles { get; set; }
public string PostMediaActorRole { get; set; }
public string GetMediaAllCreatorRoles { get; set; }
public string PostMediaCreatorRole { get; set; }
}