oca-ocb-test/odoo-bringout-oca-ocb-test_resource/test_resource/models/test_resource.py
Ernad Husremovic d9452d2060 19.0 vanilla
2026-03-09 09:32:39 +01:00

12 lines
297 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResourceTest(models.Model):
_name = 'resource.test'
_description = 'Test Resource Model'
_inherit = ['resource.mixin']
name = fields.Char()