aboutsummaryrefslogtreecommitdiffstats
path: root/github3/models/user.py
blob: c87afc35ad127dfb4c29c604968841a30f7dd6b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from base import Model


class Plan(Model):

    def __str__(self):
        return '<Plan (%s)>' % getattr(self, 'name', '')


class User(Model):
    """ """

    maps = {'plan': Plan}
    dates = ('created_at', )

    def __str__(self):
        return '<User (%s)>' % getattr(self, 'login', '')