Omertron / api-omdb

API for the Open Movie Database
GNU General Public License v3.0
27 stars 20 forks source link

Add episode and season number #7

Closed ghost closed 7 years ago

ghost commented 7 years ago

Hello, Would be nice to be able to retrieve episde / season number, when working on a TVshows.

Can be easily done by adding

@JsonProperty("Season") private Integer season; @JsonProperty("Episode") private Integer episode ;

and appropriate getters/setters in OmdbVideoFull.java

Thanks for this nice wrapper :)