Commit 62b08a56 authored by Vladislav Bogdashkin's avatar Vladislav Bogdashkin 🎣

estate info models

parent 54c57f62
......@@ -38,4 +38,34 @@ data class PlanModel(
val url:String,
val width:Int,
val height:Int
)
\ No newline at end of file
)
data class ExplicationItemModel(
val id:Int,
val estateId:Int,
val title:String,
val value: Float,
val livingType:String
)
data class ExplicationModel(
val items:List<ExplicationItemModel>
)
data class CommonEstateInfoModel(
val corpus:Int,
val section:Int,
val floor:Int,
val totalFloors:Int,
val totalArea:Float,
val livingArea:Float,
val rooms:Int,
val flatType:String,
val furnishType:String,
val ceilingHieght:Float,
val windowViewTGype:String,
val sideOfTheWorld:String,
val costPerM2:Float,
val totalSum:Float
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment