summaryrefslogtreecommitdiff
path: root/py-fake-service/app/adapter/tag.py
blob: bc98669d708f8b6af9259f17b0214a267f04f989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Tag:
    DEFAULT_TAGS = ["inbox", "sent", "trash", "drafts"] 

    def __init__(self, name, ident):
        self.counts = {
            'total': 1,
            'read': 0,
            'starred': 0,
            'reply': 0
        }   

        self.ident = ident
        self.name = name
        self.default = name in self.DEFAULT_TAGS

    def increment_count(self):
        self.counts['total'] += 1