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; } } }