Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAccountProviderDetailViewModel.cs
Burak Kaan Köse 12d3814626 Initial commit.
2024-04-18 01:44:37 +02:00

18 lines
486 B
C#

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