mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
12 lines
390 B
C#
12 lines
390 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace FeedCenter.Accounts;
|
|
|
|
public interface IAccountReader
|
|
{
|
|
public Task<int> GetProgressSteps(AccountReadInput accountReadInput);
|
|
public Task<AccountReadResult> Read(AccountReadInput accountReadInput);
|
|
public Task MarkFeedItemRead(string feedItemId);
|
|
public bool SupportsFeedDelete { get; }
|
|
public bool SupportsFeedEdit { get; }
|
|
} |