From d17f99b73e8c1acb09b7094a5e83dcb596e5d5b1 Mon Sep 17 00:00:00 2001 From: Darren Cunningham Date: Wed, 6 Nov 2024 13:27:44 -0500 Subject: [PATCH] xmldoc comments --- Fauna/Core/FeedEnumberable.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Fauna/Core/FeedEnumberable.cs b/Fauna/Core/FeedEnumberable.cs index 8988d3bd..d84f6c09 100644 --- a/Fauna/Core/FeedEnumberable.cs +++ b/Fauna/Core/FeedEnumberable.cs @@ -9,28 +9,28 @@ namespace Fauna.Core; /// -/// +/// Represents the response from Fauna Event Feed requests. /// /// public class FeedPage where T : notnull { /// - /// + /// List of Events returned by the Feed /// - public List> Events { get; private init; } = new(); + public List> Events { get; private init; } = []; /// - /// + /// Cursor returned from the Feed /// public string Cursor { get; private init; } = null!; /// - /// + /// Indicates if there are more pages for pagination. /// public bool HasNext { get; private init; } /// - /// + /// Stats returned from the Feed. /// public QueryStats Stats { get; private init; }