namespace ElectronNET.API.Entities
{
///
///
///
public class LoginItemSettings
{
///
/// if the app is set to open at login.
///
public bool OpenAtLogin { get; set; }
///
/// if the app is set to open as hidden at login. This setting is not available
/// on MAS builds.
///
public bool OpenAsHidden { get; set; }
///
/// if the app was opened at login automatically. This setting is not available
/// on MAS builds.
///
public bool WasOpenedAtLogin { get; set; }
///
/// if the app was opened as a hidden login item. This indicates that the app should not
/// open any windows at startup. This setting is not available on
/// MAS builds.
///
public bool WasOpenedAsHidden { get; set; }
///
/// if the app was opened as a login item that should restore the state from the previous
/// session. This indicates that the app should restore the windows that were open the last time the app was closed.
/// This setting is not available on MAS builds.
///
public bool RestoreState { get; set; }
}
}