mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
9 lines
219 B
Python
9 lines
219 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
|
|
class PmsPropertyInfo(Datamodel):
|
|
_inherit = "pms.property.info"
|
|
isUsedRegula = fields.Boolean(required=False, allow_none=True)
|