summaryrefslogtreecommitdiff
path: root/de_uvok/activitypub_fuse/status.py
blob: d354335e6d4fafd170e0806227bc78970a2d99c7 (plain)
1
2
3
4
5
class Status(object):
    def __init__(self, id: str, content: str, published: str):
        self.id = id
        self.content = content
        self.published = published