mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-27 01:25:37 -05:00
- Modernize old async code - Update to .NET 10 - Adjust namespace - Bypass update check when debugging
10 lines
301 B
C#
10 lines
301 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace FeedCenter.Feeds;
|
|
|
|
public interface IAccountReader
|
|
{
|
|
public Task<int> GetProgressSteps(AccountReadInput accountReadInput);
|
|
public Task<AccountReadResult> Read(AccountReadInput accountReadInput);
|
|
public Task MarkFeedItemRead(string feedItemId);
|
|
} |