Path: blob/master/osu.Game/Screens/Edit/Submission/BeatmapSubmissionSettings.cs
2272 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Game.Online.API.Requests; namespace osu.Game.Screens.Edit.Submission { public class BeatmapSubmissionSettings { public GetBeatmapSetRequest? LatestOnlineStateRequest { get; set; } public Bindable<BeatmapSubmissionTarget> Target { get; } = new Bindable<BeatmapSubmissionTarget>(); public Bindable<bool> NotifyOnDiscussionReplies { get; } = new Bindable<bool>(); } }