using System;
using Newtonsoft.Json;
namespace VkNet.Model;
///
/// Notes Restore Comment Params
///
[Serializable]
public class NotesRestoreCommentParams
{
///
/// идентификатор удаленного комментария
///
[JsonProperty("comment_id")]
public long? CommentId { get; set; }
///
/// идентификатор владельца заметки.
///
[JsonProperty("comment_id")]
public long? OwnerId { get; set; }
}