10 lines
177 B
Python
10 lines
177 B
Python
from trytond.model import fields
|
|
from trytond.pool import PoolMeta
|
|
|
|
|
|
class User(metaclass=PoolMeta):
|
|
"User"
|
|
__name__ = 'res.user'
|
|
|
|
waiter = fields.Boolean('Waiter')
|