12 lines
272 B
C#
12 lines
272 B
C#
|
using OliverBooth.Data;
|
||
|
|
||
|
namespace OliverBooth.Services;
|
||
|
|
||
|
public interface IMastodonService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets the latest status posted to Mastodon.
|
||
|
/// </summary>
|
||
|
/// <returns>The latest status.</returns>
|
||
|
IMastodonStatus GetLatestStatus();
|
||
|
}
|