Skip to content

Instantly share code, notes, and snippets.

@stolarczykt
Created April 13, 2022 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stolarczykt/e4a119b539ba240522130e0b7d3152a1 to your computer and use it in GitHub Desktop.
Save stolarczykt/e4a119b539ba240522130e0b7d3152a1 to your computer and use it in GitHub Desktop.
module Advertisements
class ChangeContent
attr_accessor :advertisement_id, :content, :author_id
def initialize(advertisement_id, content, author_id)
@advertisement_id = advertisement_id
@content = content
@author_id = author_id
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment