// // Licensed under the MIT License. See LICENSE file in the project root for full license information. // namespace MUnique.OpenMU.Persistence.Initialization.Updates; using System.Runtime.InteropServices; using MUnique.OpenMU.DataModel.Configuration; using MUnique.OpenMU.PlugIns; /// /// This updates adds the new with default settings /// for Version 0.75. /// [PlugIn] [Display(Name = PlugInName, Description = PlugInDescription)] [Guid("F1151FDE-14F7-4945-AEE9-57DAB6449CFF")] public class SystemConfigurationAddedPlugIn075 : SystemConfigurationAddedPlugInBase { /// public override string DataInitializationKey => Version075.DataInitialization.Id; /// public override UpdateVersion Version => UpdateVersion.SystemConfigurationAdded075; }