// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Rulesets.Difficulty { /// /// Data for displaying a performance attribute to user. Includes a display name for clarity. /// public class PerformanceDisplayAttribute { /// /// Name of the attribute property in . /// public string PropertyName { get; } /// /// A custom display name for the attribute. /// public string DisplayName { get; } /// /// The associated attribute value. /// public double Value { get; } public PerformanceDisplayAttribute(string propertyName, string displayName, double value) { PropertyName = propertyName; DisplayName = displayName; Value = value; } } }