20 lines
749 B
C#
20 lines
749 B
C#
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
public class Media
|
|
{
|
|
public string Base { get; set; }
|
|
public string Get { get; set; }
|
|
public string GetGenres { get; set; }
|
|
public string PostGenre { get; set; }
|
|
public string DeleteGenre { get; set; }
|
|
public string GetPhotoMediaRandomBackground { get; set; }
|
|
public string GetPoster { get; set; }
|
|
public string PutPoster { get; set; }
|
|
public string DeletePoster { get; set; }
|
|
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; }
|
|
} |