mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 13:07:17 +08:00
7 lines
175 B
Python
7 lines
175 B
Python
class SearchData:
|
|
def __init__(self, title, url, short_description):
|
|
self.title = title
|
|
self.url = url
|
|
self.short_description = short_description
|
|
|