namespace StrixMusic.Cores.OneDrive.Services { /// /// The methods used to log in to OneDrive. /// public enum LoginMethod { /// /// Login is disabled. /// None, /// /// A popup window is used for login. /// Interactive, /// /// The user is asked to visit a website and enter a code. /// DeviceCode, } }