Skip to content

Commit

Permalink
Update BoardCommentParams.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
CaCTuCaTu4ECKuu committed Aug 28, 2019
1 parent 34e92b7 commit 9adb1d4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions VkNet/Model/RequestParams/Board/BoardCommentParams.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using Newtonsoft.Json;
using VkNet.Utils;

Expand All @@ -11,14 +11,14 @@ namespace VkNet.Model.RequestParams
public class BoardCommentParams
{
/// <summary>
/// Идентификатор сообщества, в котором находится обсуждение.положительное число,
/// Идентификатор сообщества, в котором находится обсуждение. положительное число,
/// обязательный параметр
/// </summary>
[JsonProperty(propertyName: "group_id")]
public long GroupId { get; set; }

/// <summary>
/// Идентификатор сообщества, в котором находится обсуждение.положительное число,
/// Идентификатор обсуждения. положительное число,
/// обязательный параметр
/// </summary>
[JsonProperty(propertyName: "topic_id")]
Expand Down Expand Up @@ -53,11 +53,11 @@ public static VkParameters ToVkParameters(BoardCommentParams p)
{
var parameters = new VkParameters
{
{ "group_id", p.GroupId }
, { "topic_id", p.TopicId }
, { "comment_id", p.CommentId }
, { "captcha_sid", p.CaptchaSid }
, { "captcha_key", p.CaptchaKey }
{ "group_id", p.GroupId },
{ "topic_id", p.TopicId },
{ "comment_id", p.CommentId },
{ "captcha_sid", p.CaptchaSid },
{ "captcha_key", p.CaptchaKey }
};

return parameters;
Expand Down

0 comments on commit 9adb1d4

Please sign in to comment.