mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
29 lines
583 B
C#
29 lines
583 B
C#
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Enumeration of eContactMethodDevice values
|
|
/// </summary>
|
|
public enum eContactMethodDevice
|
|
{
|
|
/// <summary>
|
|
/// Unknown contact method
|
|
/// </summary>
|
|
Unknown = 0,
|
|
/// <summary>
|
|
/// Mobile contact method
|
|
/// </summary>
|
|
Mobile,
|
|
/// <summary>
|
|
/// Other contact method
|
|
/// </summary>
|
|
Other,
|
|
/// <summary>
|
|
/// Telephone contact method
|
|
/// </summary>
|
|
Telephone,
|
|
/// <summary>
|
|
/// Video contact method
|
|
/// </summary>
|
|
Video
|
|
}
|
|
} |