Skip to content

Instantly share code, notes, and snippets.

@stolarczykt
Created April 13, 2022 19:56
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/6d13a322f0b8fd3da5553995487fd206 to your computer and use it in GitHub Desktop.
Save stolarczykt/6d13a322f0b8fd3da5553995487fd206 to your computer and use it in GitHub Desktop.
module Advertisements
class PublishAdvertisement
attr_accessor :advertisement_id
attr_accessor :author_id
def initialize(advertisement_id, author_id)
@advertisement_id = advertisement_id
@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