Files
Hotel-Booking/Backend/venv/lib/python3.12/site-packages/rich/region.py
Iliyan Angelov 62c1fe5951 updates
2025-12-01 06:50:10 +02:00

11 lines
166 B
Python

from typing import NamedTuple
class Region(NamedTuple):
"""Defines a rectangular region of the screen."""
x: int
y: int
width: int
height: int