Iceshrimp.NET/Iceshrimp.Frontend/Core/Services/ApiService.cs
2024-04-01 21:24:29 +02:00

8 lines
No EOL
202 B
C#

using Iceshrimp.Frontend.Core.ControllerModels;
namespace Iceshrimp.Frontend.Core.Services;
internal class ApiService(HttpClient client)
{
internal readonly NoteControllerModel Notes = new(client);
}