class Movie

Attributes

description[RW]
sinopsis[RW]
title[RW]

Public Class Methods

new(title, description, sinopsis, image_link) click to toggle source
# File lib/ruby_legendas_tv/movie.rb, line 4
def initialize(title, description, sinopsis, image_link)
  @title = title
  @description = description
  @sinopsis = sinopsis
  @image_link = image_link
end