Пример #1
0
        private static void SignInHandler(object sender, SignInEventArgs e)
        {
            if (!e.SuccessfullySignedIn)
            {
                Print("Failed to sign into " + e.Email, ConsoleColor.Red);
                return;
            }

            Print("Successfully signed into " + e.Email + "\n", ConsoleColor.Green);
            coopReceiptManager.GetReceipts();
        }