Skip to content

Commit

Permalink
Added documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
myofficework000 committed Mar 1, 2024
1 parent 95c808d commit dc1736b
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit dc1736b

Please sign in to comment.