mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 08:12:01 +02:00
11 lines
265 B
Python
11 lines
265 B
Python
# Copyright 2021 Creu Blanca
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class IotDeviceGroup(models.Model):
|
|
_name = "iot.device.group"
|
|
_description = "Iot Group"
|
|
|
|
name = fields.Char(required=True)
|