oliverbooth.dev/OliverBooth.Common/Services/IMastodonService.cs
Oliver Booth 6ec4103a3a
refactor: separate Markdig extensions from project
Also introduces .Common project to house common references and types
2024-05-05 02:18:20 +01:00

12 lines
295 B
C#

using OliverBooth.Common.Data.Mastodon;
namespace OliverBooth.Common.Services;
public interface IMastodonService
{
/// <summary>
/// Gets the latest status posted to Mastodon.
/// </summary>
/// <returns>The latest status.</returns>
IMastodonStatus GetLatestStatus();
}