trytonpsk-maintenance_reading/configuration.py

11 lines
377 B
Python
Raw Permalink Normal View History

2020-04-16 01:53:05 +02:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.pool import PoolMeta, Pool
2021-07-24 15:17:58 +02:00
from trytond.model import fields
2020-04-16 01:53:05 +02:00
class Configuration(metaclass=PoolMeta):
__name__ = 'maintenance.configuration'
url_api = fields.Char('Url api')
api_key = fields.Char('Api Key')