Skip to content

Commit

Permalink
xmldoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cynicaljoy committed Nov 6, 2024
1 parent 485b387 commit d17f99b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Fauna/Core/FeedEnumberable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@
namespace Fauna.Core;

/// <summary>
///
/// Represents the response from Fauna Event Feed requests.
/// </summary>
/// <typeparam name="T"></typeparam>
public class FeedPage<T> where T : notnull
{
/// <summary>
///
/// List of Events returned by the Feed
/// </summary>
public List<Event<T>> Events { get; private init; } = new();
public List<Event<T>> Events { get; private init; } = [];

/// <summary>
///
/// Cursor returned from the Feed
/// </summary>
public string Cursor { get; private init; } = null!;

/// <summary>
///
/// Indicates if there are more pages for pagination.
/// </summary>
public bool HasNext { get; private init; }

/// <summary>
///
/// Stats returned from the Feed.
/// </summary>
public QueryStats Stats { get; private init; }

Expand Down

0 comments on commit d17f99b

Please sign in to comment.