12 lines
265 B
Python
12 lines
265 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
""" Coworker relation """
|
|
|
|
from odoo import models, fields, api
|
|
|
|
class CoworkerRelation(models.Model):
|
|
"""Coworker relation model """
|
|
_name = 'coworking.relation'
|
|
_description = 'relation model definition'
|
|
_order = 'id asc'
|