Add initial draft of progress update

This commit is contained in:
Joel Bradshaw
2020-11-16 22:33:04 -08:00
parent 699a661f00
commit 3beebe4727
2 changed files with 35 additions and 0 deletions

View File

@ -63,3 +63,9 @@ class Quotation(Comment):
''' a quote and commentary on a book '''
quote: str
type: str = 'Quotation'
@dataclass(init=False)
class Progress(Comment):
''' a progress update on a book '''
quote: str
type: str = 'Progress'