Simple class design (Pet)
Suppose we design a class Pet with properties PetName, PetType, OwnerTel (text), UniqueID (integer), regDate (date).
Methods include CreatePet, which assigns a unique ID and sets regDate, and GetContact, which returns PetName and OwnerTel.
This shows how a class combines data and behaviour.