oliverbooth.dev/OliverBooth/Services/IMastodonService.cs

12 lines
272 B
C#
Raw Normal View History

2024-02-23 03:23:57 +00:00
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();
}