Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAccountProviderDetailViewModel.cs

18 lines
486 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
using System;
namespace Wino.Core.Domain.Interfaces
{
public interface IAccountProviderDetailViewModel
{
/// <summary>
/// Entity id that will help to identify the startup entity on launch.
/// </summary>
Guid StartupEntityId { get; }
/// <summary>
/// Name representation of the view model that will be used to identify the startup entity on launch.
/// </summary>
string StartupEntityTitle { get; }
}
}