iro/model/status.py
author Sandro Knauß <knauss@netzguerilla.net>
Fri, 23 Mar 2012 16:22:32 +0100
branchdevel
changeset 244 48fba7b4afe9
parent 215 5bacdb7e94d1
child 263 52284710c0b4
permissions -rw-r--r--
all magic utf-8 stuff is now in iro.model.message

class Status:
    '''status for one recipient'''
    def __init__(self, provider, route, costs=0.0, count=0, exID=None):
        self.provider = provider
        self.route = route

        self.costs = costs
        self.count = count
        self.exID = exID