Skip to content

Commit dc1736b

Browse files
Added documentation
1 parent 95c808d commit dc1736b

File tree

1 file changed

+7
-0
lines changed
  • app/src/main/java/com/example/jetpack_compose_all_in_one/application_components/content_provider/demo_contacts

1 file changed

+7
-0
lines changed

app/src/main/java/com/example/jetpack_compose_all_in_one/application_components/content_provider/demo_contacts/Contact.kt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
package com.example.jetpack_compose_all_in_one.application_components.content_provider.demo_contacts
22

3+
/**
4+
* Represents a contact with an ID, name, and phone number.
5+
*
6+
* @property id The unique identifier of the contact.
7+
* @property name The name of the contact.
8+
* @property phoneNumber The phone number of the contact.
9+
*/
310
data class Contact(
411
val id: String,
512
val name: String,

0 commit comments

Comments
 (0)