f1455d7ee3
Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
12 lines
218 B
C#
12 lines
218 B
C#
using System.Collections.Generic;
|
|
|
|
namespace backend;
|
|
|
|
public class MovieResponse
|
|
{
|
|
public string Response { get; set; }
|
|
|
|
public string TotalResults { get; set; }
|
|
|
|
public List<Movie> Search { get; set; }
|
|
}
|