diff --git a/.gitignore b/.gitignore
index b6e47617de1..c42b4c7a405 100644
--- a/.gitignore
+++ b/.gitignore
@@ -127,3 +127,5 @@ dmypy.json
# Pyre type checker
.pyre/
+
+.vscode
\ No newline at end of file
diff --git a/estate/__init__.py b/estate/__init__.py
new file mode 100644
index 00000000000..ab69f6ee4e6
--- /dev/null
+++ b/estate/__init__.py
@@ -0,0 +1,3 @@
+from . import models
+
+from odoo import api, SUPERUSER_ID
\ No newline at end of file
diff --git a/estate/__manifest__.py b/estate/__manifest__.py
new file mode 100644
index 00000000000..2f749ed7bfa
--- /dev/null
+++ b/estate/__manifest__.py
@@ -0,0 +1,11 @@
+{
+ 'name': "Real Estate",
+ 'version': '1.0',
+ 'depends': ['base'],
+ 'application': True,
+ 'data': [
+ 'security/ir.model.access.csv',
+ 'views/estate_property_views.xml',
+ 'views/estate_menus.xml',
+ ],
+}
\ No newline at end of file
diff --git a/estate/models/__init__.py b/estate/models/__init__.py
new file mode 100644
index 00000000000..f4c8fd6db6d
--- /dev/null
+++ b/estate/models/__init__.py
@@ -0,0 +1 @@
+from . import estate_property
\ No newline at end of file
diff --git a/estate/models/estate_property.py b/estate/models/estate_property.py
new file mode 100644
index 00000000000..f63e6f2496a
--- /dev/null
+++ b/estate/models/estate_property.py
@@ -0,0 +1,57 @@
+from odoo import fields, models
+from dateutil.relativedelta import relativedelta
+
+class Property(models.Model):
+ _name = "estate.property"
+ _description = "Real Estate Properties"
+
+ name = fields.Char(string='Title', required=True)
+
+ description = fields.Text()
+
+ postcode = fields.Char()
+
+ date_availability = fields.Date('Available From', copy=False, default=(fields.Date.today() + relativedelta(months=3)))
+
+ expected_price = fields.Float(required=True)
+
+ selling_price = fields.Float(readonly=True, copy=False)
+
+ bedrooms = fields.Integer(default=2)
+
+ living_area = fields.Integer(string="Living Area (sqm)")
+
+ facades = fields.Integer()
+
+ garage = fields.Boolean()
+
+ garden = fields.Boolean()
+
+ garden_area = fields.Integer()
+
+ garden_orientation = fields.Selection(
+ selection=[
+ ('north', 'North'),
+ ('south', 'South'),
+ ('west', 'West'),
+ ('east', 'East'),
+ ],
+ )
+
+ best_offer = fields.Float()
+
+ active = fields.Boolean(default=True)
+
+ state = fields.Selection(
+ string='Status',
+ selection=[
+ ('new', 'New'),
+ ('received', 'Offer Received'),
+ ('accepted', 'Offer Accepted'),
+ ('sold', 'Sold'),
+ ('cancelled', 'Cancelled'),
+ ],
+ required=True,
+ copy=False,
+ default="new"
+ )
diff --git a/estate/security/ir.model.access.csv b/estate/security/ir.model.access.csv
new file mode 100644
index 00000000000..11214b63262
--- /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_property_access_right_user,estate_property_access_right,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..8990e2775aa
--- /dev/null
+++ b/estate/views/estate_menus.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ No newline at end of file
diff --git a/estate/views/estate_property_views.xml b/estate/views/estate_property_views.xml
new file mode 100644
index 00000000000..03a0a53b0b2
--- /dev/null
+++ b/estate/views/estate_property_views.xml
@@ -0,0 +1,83 @@
+
+
+
+ estate.property.list
+ estate.property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ estate.property.form
+ estate.property
+
+
+
+
+
+
+ estate.property.search
+ estate.property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Properties
+ estate.property
+ list,form
+
+
\ No newline at end of file