mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-02-16 18:47:28 -05:00
Start cleaning up account types
This commit is contained in:
12
Application/Accounts/IAccountReader.cs
Normal file
12
Application/Accounts/IAccountReader.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user