Iceshrimp.NET/Iceshrimp.Frontend/Core/Services/NoteStore/TimelineState.cs
2025-01-19 22:53:25 +01:00

10 lines
No EOL
401 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) => String.Compare(y, x, StringComparison.Ordinal)));
public string? MaxId { get; set; }
public string? MinId { get; set; }
}