mirror of
https://github.com/bringout/oca-storage.git
synced 2026-04-19 20:32:02 +02:00
15 lines
288 B
Python
15 lines
288 B
Python
# Copyright 2023 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
from ..fields import FSFile
|
|
|
|
|
|
class TestModel(models.Model):
|
|
|
|
_name = "test.model"
|
|
_description = "Test Model"
|
|
_log_access = False
|
|
|
|
fs_file = FSFile()
|