using System.Threading.Tasks;
using Wino.Core.Domain.Enums;
namespace Wino.Core.Domain.Interfaces
{
public interface IStartupBehaviorService
{
///
/// Gets whether Wino Server is set to launch on startup or not.
///
Task GetCurrentStartupBehaviorAsync();
///
/// Enables/disables the current startup behavior for Wino Server.
///
/// Whether to launch enabled or disabled.
/// True if operation success, false if not.
Task ToggleStartupBehavior(bool isEnabled);
}
}