using OliverBooth.Data.Mastodon; namespace OliverBooth.Services; public interface IMastodonService { /// /// Gets the latest status posted to Mastodon. /// /// The latest status. MastodonStatus GetLatestStatus(); }