feat(essentials): Adds IsInvitableContact property with getter to DirectoryContact

This commit is contained in:
Neil Dorin
2021-08-19 14:14:14 -06:00
parent 8bf4b0d568
commit b2331fa1e5

View File

@@ -209,7 +209,14 @@ namespace PepperDash.Essentials.Devices.Common.Codec
[JsonProperty("title")]
public string Title { get; set; }
[JsonProperty("isInvitableContact")]
public bool IsInvitableContact
{
get
{
return this is IInvitableContact;
}
}
[JsonProperty("contactMethods")]
public List<ContactMethod> ContactMethods { get; set; }