mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
11 lines
288 B
Python
11 lines
288 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
|
|
class PmsReservationSearchParam(Datamodel):
|
|
_name = "pms.reservation.search.param"
|
|
|
|
id = fields.Integer(required=False, allow_none=False)
|
|
name = fields.String(required=False, allow_none=False)
|