mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
22 lines
505 B
C#
22 lines
505 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Represents an InvitableDirectoryContact
|
|
/// </summary>
|
|
public class InvitableDirectoryContact : DirectoryContact, IInvitableContact
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether this contact is invitable
|
|
/// </summary>
|
|
[JsonProperty("isInvitableContact")]
|
|
public bool IsInvitableContact
|
|
{
|
|
get
|
|
{
|
|
return this is IInvitableContact;
|
|
}
|
|
}
|
|
}
|
|
} |