oliverbooth.dev/OliverBooth.Common/Services/IMastodonService.cs

12 lines
295 B
C#
Raw Normal View History

using OliverBooth.Common.Data.Mastodon;
2024-02-23 03:23:57 +00: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>
IMastodonStatus GetLatestStatus();
2024-02-23 03:23:57 +00:00
}