using BackendStarter.Api.Models; namespace BackendStarter.Api.Repositories; public sealed class InMemoryWeatherQueryRepository : IWeatherQueryRepository { public WeatherSnapshot GetToday() { return new WeatherSnapshot("Shanghai", 26, "Cloudy"); } }