// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Online.API.Requests.Responses; using osu.Game.Rulesets; namespace osu.Game.Overlays.Profile { /// /// Contains data about a profile presented on the . /// public class UserProfileData { /// /// The user whose profile is being presented. /// public APIUser User { get; } /// /// The ruleset that the user profile is being shown with. /// public RulesetInfo Ruleset { get; } public UserProfileData(APIUser user, RulesetInfo ruleset) { User = user; Ruleset = ruleset; } } }