using Quasar.Common.Models; using System.Collections.Generic; namespace Quasar.Client.Recovery { /// /// Provides a common way to read stored accounts from applications. /// public interface IAccountReader { /// /// Reads the stored accounts of the application. /// /// A list of recovered accounts IEnumerable ReadAccounts(); /// /// The name of the application. /// string ApplicationName { get; } } }