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