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