mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
10 lines
330 B
Python
10 lines
330 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
class PmsWizardStateInfo(Datamodel):
|
|
_name = "pms.wizard.state.info"
|
|
code = fields.String(required=True, allow_none=False)
|
|
title = fields.String(required=False, allow_none=True)
|
|
text = fields.String(required=False, allow_none=True)
|