VkNet.Model.LookupContactsOther.FromJson C# (CSharp) Method

FromJson() public static method

Разобрать из json.
public static FromJson ( VkResponse response ) : LookupContactsOther
response VkNet.Utils.VkResponse Ответ сервера.
return LookupContactsOther
        public static LookupContactsOther FromJson(VkResponse response)
        {
            return new LookupContactsOther
            {
                Contact = response["contact"],
                CommonCount = response["common_count"]
            };
        }
LookupContactsOther