mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
7 lines
210 B
C#
7 lines
210 B
C#
namespace FeedCenter;
|
|
|
|
public interface IAccountReader
|
|
{
|
|
public int GetProgressSteps(FeedCenterEntities entities);
|
|
public AccountReadResult Read(Account account, AccountReadInput accountReadInput);
|
|
} |