diff --git a/src/Tizen.Telephony/Tizen.Telephony/CallHandle.cs b/src/Tizen.Telephony/Tizen.Telephony/CallHandle.cs
index 71a2f04965f..2ee78938b0e 100644
--- a/src/Tizen.Telephony/Tizen.Telephony/CallHandle.cs
+++ b/src/Tizen.Telephony/Tizen.Telephony/CallHandle.cs
@@ -21,6 +21,9 @@ namespace Tizen.Telephony
{
///
/// This class provides the APIs to get the information about calls.
+ /// It contains several properties such as HandleId, Number, Type, Status, Direction, and ConferenceStatus,
+ /// which allow users to obtain specific details about a call. These properties can be accessed individually
+ /// to gain insights into aspects like the call handle ID, number, type, status, direction, and whether it is a conference call or not.
///
/// 3
public class CallHandle
diff --git a/src/Tizen.Telephony/Tizen.Telephony/ChangeNotificationEventArgs.cs b/src/Tizen.Telephony/Tizen.Telephony/ChangeNotificationEventArgs.cs
index e45df9c8532..d38ff1489bb 100644
--- a/src/Tizen.Telephony/Tizen.Telephony/ChangeNotificationEventArgs.cs
+++ b/src/Tizen.Telephony/Tizen.Telephony/ChangeNotificationEventArgs.cs
@@ -19,6 +19,9 @@ namespace Tizen.Telephony
{
///
/// This class contains the data related to the Notification event.
+ /// Each Notification type corresponds to a specific change in the telephony or network configuration,
+ /// allowing developers to react accordingly. By leveraging these notifications, applications can maintain
+ /// real-time awareness of critical telephony and network conditions, enhancing overall user experience.
///
/// 3
public class ChangeNotificationEventArgs : EventArgs
diff --git a/src/Tizen.Telephony/Tizen.Telephony/Modem.cs b/src/Tizen.Telephony/Tizen.Telephony/Modem.cs
index 96ecb0f8813..c68ca54e4d9 100644
--- a/src/Tizen.Telephony/Tizen.Telephony/Modem.cs
+++ b/src/Tizen.Telephony/Tizen.Telephony/Modem.cs
@@ -20,6 +20,9 @@ namespace Tizen.Telephony
{
///
/// This class provides APIs to obtain information from the modem.
+ /// It includes properties such as Imei, which allows users to retrieve the International
+ /// Mobile Station Equipment Identity (IMEI) of a mobile phone. By utilizing these features,
+ /// developers can gather valuable information about the modem and incorporate it into their applications effectively.
///
/// 3
public class Modem
diff --git a/src/Tizen.Telephony/Tizen.Telephony/Network.cs b/src/Tizen.Telephony/Tizen.Telephony/Network.cs
index 8496a2dba13..afaee903e01 100644
--- a/src/Tizen.Telephony/Tizen.Telephony/Network.cs
+++ b/src/Tizen.Telephony/Tizen.Telephony/Network.cs
@@ -20,6 +20,8 @@ namespace Tizen.Telephony
{
///
/// The Network class provides APIs to obtain information about the current telephony service network.
+ /// It offers properties such as Lac, which allows users to retrieve the Location Area Code (LAC) of
+ /// the current location. Another property, CellId, enables users to obtain the cell identification number.
///
/// 3
public class Network
diff --git a/src/Tizen.Telephony/Tizen.Telephony/Sim.cs b/src/Tizen.Telephony/Tizen.Telephony/Sim.cs
index 6387665ba3a..eab1744df70 100644
--- a/src/Tizen.Telephony/Tizen.Telephony/Sim.cs
+++ b/src/Tizen.Telephony/Tizen.Telephony/Sim.cs
@@ -21,6 +21,9 @@ namespace Tizen.Telephony
{
///
/// This class provides APIs that allow you to extract the information stored on a SIM card.
+ /// It includes properties such as IccId, which allows users to retrieve the Integrated
+ // Circuit Card Identification (ICCID) of the SIM card. By leveraging these features,
+ /// developers can gather valuable information about the SIM card and incorporate it into their applications effectively.
///
/// 3
public class Sim