2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Configuration.Model;
|
2024-07-03 22:18:32 +02:00
|
|
|
|
|
|
|
|
|
|
public class Genres
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Base { get; set; }
|
2024-11-08 17:53:23 +01:00
|
|
|
|
public string GetGenres { get; set; }
|
|
|
|
|
|
public string GetGenre { get; set; }
|
|
|
|
|
|
public string PostGenre { get; set; }
|
|
|
|
|
|
public string DeleteGenre { get; set; }
|
|
|
|
|
|
public string GetGenreMedia { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
}
|