869c384
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""
用戶data裡面的json數據bean
"""
class User_Data:
def __init__(
self,
name,
picture: str = "",
):
self.name = name
self.picture = picture
def to_json(self):
return {
"name": self.name,
"picture": self.picture
}
|