mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
13 lines
323 B
C#
13 lines
323 B
C#
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IInvitableContact
|
|
/// </summary>
|
|
public interface IInvitableContact
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether this contact is invitable
|
|
/// </summary>
|
|
bool IsInvitableContact { get; }
|
|
}
|
|
} |