vknet_vk/VkNet/Model/Connections.cs
Tartilla-TAIGO 5454ae3b55
Merge pull request #1644
* update from vk.com to vk.ru

* add Microsoft.Extensions.Logging

* Исправляет сборку

* Исправляет сборку

* Обновляет пакеты

* Переводит тесты на AwesomeAssertions

* Устанавливает Reo.Core.Analyzers из nuget

* Удаляет явную ссылку на Reo.Core.Analyzers из VkNet.csproj
2025-09-08 22:08:03 +03:00

45 lines
No EOL
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Информация о социальных контактах пользователя.
/// См. описание
/// <see href="https://vk.ru/dev/objects/user" />
/// Экспериментально установлено, что поля находятся непосредственно в полях
/// объекта User.
/// </summary>
[Serializable]
public class Connections
{
/// <summary>
/// Логин в Skype.
/// </summary>
[JsonProperty("skype")]
public string Skype { get; set; }
/// <summary>
/// Идентификатор акаунта в Facebook.
/// </summary>
[JsonProperty("facebook")]
public string Facebook { get; set; }
/// <summary>
/// Имя и фамилия в facebook.
/// </summary>
[JsonProperty("facebook_name")]
public string FacebookName { get; set; }
/// <summary>
/// Акаунт в twitter.
/// </summary>
[JsonProperty("twitter")]
public string Twitter { get; set; }
/// <summary>
/// Акаунт в Instagram.
/// </summary>
[JsonProperty("instagram")]
public string Instagram { get; set; }
}