using System; namespace Artemis.Core; /// /// Provides data for profile configuration events. /// public class ProfileConfigurationEventArgs : EventArgs { internal ProfileConfigurationEventArgs(ProfileConfiguration profileConfiguration) { ProfileConfiguration = profileConfiguration; } /// /// Gets the profile configuration this event is related to /// public ProfileConfiguration ProfileConfiguration { get; } }