Iceshrimp.NET/Iceshrimp.Frontend/Core/Services/NoteStore/TimelineState.cs

10 lines
No EOL
369 B
C#

using Iceshrimp.Shared.Schemas.Web;
namespace Iceshrimp.Frontend.Core.Services.NoteStore;
internal class TimelineState
{
public SortedList<string, NoteResponse> Timeline { get; } = new(Comparer<string>.Create((x, y) => y.CompareTo(x)));
public string? MaxId { get; set; }
public string? MinId { get; set; }
}