Iceshrimp.NET/Iceshrimp.Frontend/Core/Services/StateService.cs
2024-07-11 01:06:18 +02:00

9 lines
No EOL
299 B
C#

using Iceshrimp.Frontend.Core.Services.StateServicePatterns;
namespace Iceshrimp.Frontend.Core.Services;
internal class StateService(MessageService messageService)
{
public VirtualScroller VirtualScroller { get; } = new();
public Timeline Timeline { get; } = new(messageService);
}