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; }
|
|
|
|
|
|
public string GetAll { get; set; }
|
|
|
|
|
|
public string Get { get; set; }
|
|
|
|
|
|
public string Post { get; set; }
|
|
|
|
|
|
public string Put { get; set; }
|
|
|
|
|
|
public string Delete { get; set; }
|
|
|
|
|
|
}
|