This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Cinemateket/backend/cinemateket/Models/MovieResponse.cs

23 lines
512 B
C#
Raw Normal View History

#nullable disable
namespace backend;
public class MovieResponse
{
public MovieResponse(string Response, int TotalResults, int CurrentPage ,IEnumerable<MovieDB> Search) {
this.Response = Response;
this.TotalResults = TotalResults;
this.CurrentPage = CurrentPage;
this.Search = Search;
}
public string Response { get; set; }
public int TotalResults { get; set; }
public int CurrentPage { get; set; }
public IEnumerable<MovieDB> Search { get; set; }
}