using System; using System.IO; using System.Threading.Tasks; namespace SocialWeather { public class ProtobufWeatherStreamFormatter : IStreamFormatter { public Task ReadAsync(Stream stream) { throw new NotImplementedException(); } public Task WriteAsync(WeatherReport value, Stream stream) { throw new NotImplementedException(); } } }