Iceshrimp.NET/Iceshrimp.Frontend/Core/Services/StateService.cs
2024-06-29 00:48:53 +02:00

9 lines
No EOL
252 B
C#

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