Skip to content

Commit

Permalink
Fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasweimann committed Aug 2, 2024
1 parent eb37d3c commit 0d6df0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public class BaseInputPaidMediaPhoto: BaseInputPaidMedia

/// <summary>
/// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended),
/// pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one
/// using multipart/form-data under <file_attach_name> name.
/// pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://{file_attach_name}” to upload a new one
/// using multipart/form-data under {file_attach_name} name.
/// </summary>
public string Media { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public class BaseInputPaidMediaVideo : BaseInputPaidMedia

/// <summary>
/// File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to
/// get a file from the Internet, or pass “attach://< file_attach_name >” to upload a new one using multipart/form-data
/// under </file_attach_name > name.
/// get a file from the Internet, or pass “attach://{file_attach_name}” to upload a new one using multipart/form-data
/// under {file_attach_name} name.
/// </summary>
public string Media { get; set; }

Expand Down

0 comments on commit 0d6df0b

Please sign in to comment.