using System;
namespace Wino.Core.Domain.Interfaces
{
public interface IAccountProviderDetailViewModel
{
///
/// Entity id that will help to identify the startup entity on launch.
///
Guid StartupEntityId { get; }
///
/// Name representation of the view model that will be used to identify the startup entity on launch.
///
string StartupEntityTitle { get; }
///
/// E-mail addresses that this account holds.
///
string StartupEntityAddresses { get; }
///
/// Represents the account order in the accounts list.
///
int Order { get; }
///
/// Provider details of the account.
///
IProviderDetail ProviderDetail { get; set; }
///
/// How many accounts this provider has.
///
int HoldingAccountCount { get; }
}
}