using DeepDrftModels.DTOs; using NetBlocks.Models; namespace DeepDrftPublic.Client.Services; /// /// Home-stats read abstraction. Both SSR and WASM renders are served by StatsClientDataService /// in this assembly, which delegates to over HTTP. Components inject /// this single seam so they do not branch on render mode — mirrors . /// public interface IStatsDataService { /// Aggregate figures behind the public home hero stat row, in one round-trip. Task> GetHomeStats(); }