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..70ade2f66c8
--- /dev/null
+++ b/estate/__manifest__.py
@@ -0,0 +1,17 @@
+{
+ 'name': "Real Estate",
+ 'version': '1.0',
+ 'depends': ['base'],
+ 'author': "Shivam Saksham(shsak)",
+ 'category': 'Sales',
+ 'description': """
+ An Real Estate App to buy, sell, and rent properties.
+ """,
+ 'application': True,
+ 'license': 'LGPL-3',
+ 'data': [
+ 'security/ir.model.access.csv',
+ 'views/estate_property_views.xml',
+ 'views/estate_menus.xml',
+ ],
+}
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..58bac3894dc
--- /dev/null
+++ b/estate/models/estate_property.py
@@ -0,0 +1,34 @@
+from odoo import models, fields
+
+
+class EstateProperty(models.Model):
+ _name = "estate_property"
+ _description = "Estate Property details"
+
+ name = fields.Char(required=True)
+ description = fields.Text()
+ postcode = fields.Char()
+ date_availability = fields.Date(
+ default=lambda self: fields.Date.add(fields.Date.today(), months=3),
+ copy=False
+ )
+ expected_price = fields.Float(required=True)
+ selling_price = fields.Float(readonly=True, copy=False)
+ bedrooms = fields.Integer(default=2)
+ living_area = fields.Integer()
+ facades = fields.Integer()
+ garage = fields.Boolean()
+ garden = fields.Boolean()
+ garden_area = fields.Integer()
+ garden_orientation = fields.Selection(
+ string='Garden Orientation',
+ selection=[('north', 'North'), ('south', 'South'), ('east', 'East'), ('west', 'West')]
+ )
+ state = fields.Selection(
+ string='Status',
+ selection=[('new', 'New'), ('offer_received', 'Offer Received'), ('offer_accepted', 'Offer Accepted'), ('sold', 'Sold'), ('cancelled', 'Cancelled')],
+ default='new',
+ required=True,
+ copy=False
+ )
+ active = fields.Boolean(default=True)
diff --git a/estate/security/ir.model.access.csv b/estate/security/ir.model.access.csv
new file mode 100644
index 00000000000..fe21e56c6d2
--- /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..17a1223dc5d
--- /dev/null
+++ b/estate/views/estate_menus.xml
@@ -0,0 +1,7 @@
+
+
+
\ 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..32b10970184
--- /dev/null
+++ b/estate/views/estate_property_views.xml
@@ -0,0 +1,80 @@
+
+
+ estate_property_form
+ estate_property
+
+
+
+
+
+
+ Properties List
+ estate_property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Properties Search
+ estate_property
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Properties
+ estate_property
+ list,form
+
+
\ No newline at end of file