vknet_vk/VkNet/Model/GroupUpdate/PhotoComment.cs
Инютин Максим Николаевич 3b145a3327 Рефакторинг проекта
2025-09-09 01:02:47 +03:00

23 lines
No EOL
706 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;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Добавление/редактирование/восстановление комментария к фотографии
/// (<c>PhotoCommentNew</c>, <c>PhotoCommentEdit</c>, <c>PhotoCommentRestore</c>)
/// (<c>Comment</c> с дополнительными полями)
/// </summary>
[Serializable]
public class PhotoComment : Comment, IGroupUpdate
{
/// <inheritdoc />
[JsonProperty("photo_id")]
public new long? PhotoId { get; set; }
/// <summary>
/// Идентификатор владельца фотографии
/// </summary>
[JsonProperty("photo_owner_id")]
public long? PhotoOwnerId { get; set; }
}