diff --git a/estate/__init__.py b/estate/__init__.py
new file mode 100644
index 00000000000..0650744f6bc
--- /dev/null
+++ b/estate/__init__.py
@@ -0,0 +1 @@
+from . import models
diff --git a/estate/__manifest__.py b/estate/__manifest__.py
new file mode 100644
index 00000000000..20a3e254e3c
--- /dev/null
+++ b/estate/__manifest__.py
@@ -0,0 +1,20 @@
+{
+ 'name': 'Real Estate',
+ 'version': '1.0',
+ 'description': 'Real Estate Management System',
+ 'summary': 'Real Estate Management System',
+ 'author': 'Lud0do1202',
+ 'license': 'LGPL-3',
+ 'depends': [
+ 'base'
+ ],
+ 'data': [
+ # Security
+ 'security/ir.model.access.csv',
+ # Views
+ 'views/estate_property.xml',
+ 'views/estate_menus.xml',
+ ],
+ 'auto_install': False,
+ 'application': True,
+}
\ No newline at end of file
diff --git a/estate/models/__init__.py b/estate/models/__init__.py
new file mode 100644
index 00000000000..5e1963c9d2f
--- /dev/null
+++ b/estate/models/__init__.py
@@ -0,0 +1 @@
+from . import estate_property
diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py
new file mode 100644
index 00000000000..92e244e9461
--- /dev/null
+++ b/estate/models/estate_property.py
@@ -0,0 +1,52 @@
+from odoo import models, fields
+from dateutil.relativedelta import relativedelta
+
+
+class EstateProperty(models.Model):
+ _name = "estate.property"
+ _description = "estate.property"
+
+ name = fields.Char(string="Title", required=True)
+ description = fields.Text(string="Description")
+ postcode = fields.Char(string="Postcode")
+ date_availability = fields.Date(
+ string="Availability From",
+ copy=False,
+ default=lambda self: fields.Date.today() + relativedelta(months=3),
+ )
+ expected_price = fields.Float(string="Expected Price", required=True)
+ selling_price = fields.Float(
+ string="Selling Price",
+ readonly=True,
+ copy=False,
+ )
+ bedrooms = fields.Integer(string="Bedrooms", default=2)
+ living_area = fields.Integer(string="Living Area (sqm)")
+ facades = fields.Integer(string="Facades")
+ garage = fields.Boolean(string="Garage")
+ garden = fields.Boolean(string="Garden")
+ garden_area = fields.Integer(string="Garden Area")
+ garden_orientation = fields.Selection(
+ [
+ ("north", "North"),
+ ("south", "South"),
+ ("east", "East"),
+ ("west", "West"),
+ ],
+ string="Garden Orientation",
+ )
+ # New, Offer Received, Offer Accepted, Sold and Cancelled
+ state = fields.Selection(
+ [
+ ("new", "New"),
+ ("offer_received", "Offer Received"),
+ ("offer_accepted", "Offer Accepted"),
+ ("sold", "Sold"),
+ ("cancelled", "Cancelled"),
+ ],
+ string="State",
+ default="new",
+ required=True,
+ copy=False,
+ )
+ active = fields.Boolean(string="Active", default=True)
diff --git a/estate/security/ir.model.access.csv b/estate/security/ir.model.access.csv
new file mode 100644
index 00000000000..ab63520e22b
--- /dev/null
+++ b/estate/security/ir.model.access.csv
@@ -0,0 +1,2 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+estate.access_estate_property,access_estate_property,estate.model_estate_property,base.group_user,1,1,1,1
\ No newline at end of file
diff --git a/estate/views/estate_menus.xml b/estate/views/estate_menus.xml
new file mode 100644
index 00000000000..5190f7b6bc3
--- /dev/null
+++ b/estate/views/estate_menus.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/estate/views/estate_property.xml b/estate/views/estate_property.xml
new file mode 100644
index 00000000000..cf716a2f0eb
--- /dev/null
+++ b/estate/views/estate_property.xml
@@ -0,0 +1,100 @@
+
+
+
+ estate.property.view.list
+ estate.property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ estate.property.view.form
+ estate.property
+
+
+
+
+
+
+
+ estate.property.view.search
+ estate.property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Estate Property Action
+ estate.property
+ list,form
+
+
\ No newline at end of file