7 lines
160 B
Python
7 lines
160 B
Python
class Article:
|
|
def __init__(self, url, image_url, title, summary):
|
|
self.url = url
|
|
self.image_url = image_url
|
|
self.title = title
|
|
self.summary = summary
|