23 lines
423 B
Python
23 lines
423 B
Python
|
from typing_extensions import List
|
||
|
import json
|
||
|
|
||
|
class Data_Thread:
|
||
|
sender_name: str
|
||
|
recipient_name: str
|
||
|
subject: str
|
||
|
body: str
|
||
|
sent_date: str
|
||
|
received_date: str
|
||
|
attachment_count: int
|
||
|
is_read: bool
|
||
|
is_spam: bool
|
||
|
importance_level: str
|
||
|
reply_count: int
|
||
|
forward_count: int
|
||
|
cc_recipients: str
|
||
|
bcc_recipients: str
|
||
|
folder: str
|
||
|
|
||
|
Threads : List[Data_Thread] = []
|
||
|
|