We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742f050 commit 5938937Copy full SHA for 5938937
estate/__manifest__.py
@@ -1,6 +1,6 @@
1
-# -*- coding: utf-8 -*-
2
-{
3
- 'name': 'Real Estate',
4
- 'depends': ['base'],
5
- 'application': True
6
-}
+{'name': 'Real Estate',
+'depends': ['base'],
+'application': True,
+'author': 'leker',
+'license': 'LGPL-3',
+}
estate/models/__init__.py
@@ -0,0 +1 @@
+from . import estate_property
estate/models/estate_property.py
@@ -0,0 +1,5 @@
+from odoo import models
+
+class Property(models.Model):
+ _name = "estate.property"
0 commit comments