mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
9 lines
243 B
Python
9 lines
243 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
|
|
class PmsCalendarChanges(Datamodel):
|
|
_name = "pms.calendar.changes"
|
|
reservationLinesChanges = fields.List(fields.Dict(required=False, allow_none=True))
|