diff --git a/backend/Movie.cs b/backend/Movie.cs new file mode 100644 index 0000000..537e11f --- /dev/null +++ b/backend/Movie.cs @@ -0,0 +1,14 @@ +namespace backend; + +public class Movie +{ + public string Title { get; set; } + + public string Year { get; set; } + + public string imdbID { get; set; } + + public string Type { get; set; } + + public string Poster { get; set; } +} \ No newline at end of file diff --git a/backend/MovieResponse.cs b/backend/MovieResponse.cs new file mode 100644 index 0000000..dd207cc --- /dev/null +++ b/backend/MovieResponse.cs @@ -0,0 +1,12 @@ +using System.Collections.Generic; + +namespace backend; + +public class MovieResponse +{ + public string Response { get; set; } + + public string TotalResults { get; set; } + + public List Search { get; set; } +}