using System; using System.Collections.Generic; namespace VeloeMinecraftLauncher.Entity.LauncherProfiles; [Serializable] public class LauncherProfiles { public string SelectedProfile { get; set; } public Dictionary Profiles { get; set; } public LauncherProfiles() { Profiles = new Dictionary(); } } [Serializable] public class Profile { public string Name { get; set; } public string LastVersionId { get; set; } public string[] AllowedReleaseTypes { get; set; } public string LauncherVisibilityOnGameClose { get; set; } }