14 lines
443 B
C#
14 lines
443 B
C#
|
|
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|||
|
|
|
|||
|
|
public class Movies
|
|||
|
|
{
|
|||
|
|
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; }
|
|||
|
|
public string GetGenres { get; set; }
|
|||
|
|
public string PostGenre { get; set; }
|
|||
|
|
public string DeleteGenre { get; set; }
|
|||
|
|
}
|