From dc1736b3b60aa78059a7ec548afc0b130d6d333b Mon Sep 17 00:00:00 2001 From: "DHNGL-ABHISHEKP\\Abhishek P" Date: Sat, 2 Mar 2024 00:57:56 +0530 Subject: [PATCH] Added documentation --- .../content_provider/demo_contacts/Contact.kt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/src/main/java/com/example/jetpack_compose_all_in_one/application_components/content_provider/demo_contacts/Contact.kt b/app/src/main/java/com/example/jetpack_compose_all_in_one/application_components/content_provider/demo_contacts/Contact.kt index ad237ebc..0addeb6e 100644 --- a/app/src/main/java/com/example/jetpack_compose_all_in_one/application_components/content_provider/demo_contacts/Contact.kt +++ b/app/src/main/java/com/example/jetpack_compose_all_in_one/application_components/content_provider/demo_contacts/Contact.kt @@ -1,5 +1,12 @@ package com.example.jetpack_compose_all_in_one.application_components.content_provider.demo_contacts +/** + * Represents a contact with an ID, name, and phone number. + * + * @property id The unique identifier of the contact. + * @property name The name of the contact. + * @property phoneNumber The phone number of the contact. + */ data class Contact( val id: String, val name: String,