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

8 lines
No EOL
273 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)));
}