···11+package com.example.util.simpletimetracker.domain.model
22+33+data class Coordinates(
44+ val left: Int,
55+ val top: Int,
66+ val right: Int,
77+ val bottom: Int,
88+) {
99+1010+ val width: Int get() = right - left
1111+ val height: Int get() = bottom - top
1212+}