KbtterWPF.MainWindow.GetDefaultConfig C# (CSharp) Method

GetDefaultConfig() private method

private GetDefaultConfig ( ) : Config
return Config
        private Config GetDefaultConfig()
        {
            var f = new Config();
            f["Kbtter.General.PreloadTimeline"] = 100;
            f["Kbtter.General.TimelineMax"] = 200;
            f["Kbtter.General.MentionMax"] = 200;
            f["Kbtter.General.UserTweetsMax"] = 200;
            f["Kbtter.General.UserFollowingShow"] = 50;
            f["Kbtter.General.UserFollowersShow"] = 50;
            f["Kbtter.General.UserFavoritesMax"] = 200;
            f["Kbtter.General.SearchCount"] = 100;
            f["Kbtter.General.ProtectedText"] = "🔓";

            f["Kbtter.Environment.MessageFile"] = "lang/Japanese.cfg";

            f["Kbtter.Notifycation.ReplySound"] = "sound/notify1.wav";
            f["Kbtter.Notifycation.DMReceivedSound"] = "sound/notify1.wav";
            f["Kbtter.Notifycation.RetweetedSound"] = "sound/notify2.wav";
            f["Kbtter.Notifycation.FavoritedSound"] = "sound/notify2.wav";
            f["Kbtter.Notifycation.UnfavoritedSound"] = "";
            return f;
        }