Skip to content

Commit 79a0fe9

Browse files
committed
fix: add nullability note
1 parent 8507609 commit 79a0fe9

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

WebApi/Controllers/PublicController.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ public async Task<IReadOnlyCollection<PublicLinkListingResult>> FindLinksByPostI
6767
/// <summary>
6868
/// A link listing result accessible to the public.
6969
/// </summary>
70+
/// <param name="RedditPostId">The reddit post id (without prefix, e.g., "abc123").</param>
71+
/// <param name="PostTitle">The title of the reddit post. This may be null if the title was not stored when the link was created.</param>
72+
/// <param name="LinkUrl">The URL of the link.</param>
73+
/// <param name="LinkType">The type of the link.</param>
74+
/// <param name="ProviderUsername">The username of the provider of the link (without prefix, e.g., "a-mirror-bot").</param>
7075
public record PublicLinkListingResult(
7176
[JsonProperty("redditPostId")] string RedditPostId,
7277
[JsonProperty("postTitle")] string? PostTitle,

0 commit comments

Comments
 (0)