vknet_vk/VkNet/Model/Attachments/Attachment.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

21 lines
No EOL
504 B
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;
namespace VkNet.Model;
/// <summary>
/// Информация о медиавложении в записи.
/// См. описание http://vk.ru/dev/attachments_w
/// </summary>
[Serializable]
public class Attachment
{
/// <summary>
/// Экземпляр самого прикрепления.
/// </summary>
public MediaAttachment Instance { get; set; }
/// <summary>
/// Информация о типе вложения.
/// </summary>
public Type Type { get; set; }
}