##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1429 - No Title.py
# Description: No Title
##############################################################################
class Client:
def __init__(self, name, phone):
self.name = name
self.phone = phone