Files

16 lines
584 B
C#
Raw Normal View History

2024-07-03 22:18:32 +02:00
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; }
}