2024-02-23 05:36:31 +00:00
|
|
|
using OliverBooth.Data.Mastodon;
|
2024-02-23 03:23:57 +00:00
|
|
|
|
|
|
|
namespace OliverBooth.Services;
|
|
|
|
|
|
|
|
public interface IMastodonService
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the latest status posted to Mastodon.
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>The latest status.</returns>
|
2024-02-23 05:36:31 +00:00
|
|
|
MastodonStatus GetLatestStatus();
|
2024-02-23 03:23:57 +00:00
|
|
|
}
|