mirror of
https://github.com/ppy/osu.git
synced 2025-03-13 21:47:19 +08:00
16 lines
518 B
C#
16 lines
518 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. 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 Bindable<BeatmapSubmissionTarget> Target { get; } = new Bindable<BeatmapSubmissionTarget>();
|
|
|
|
public Bindable<bool> NotifyOnDiscussionReplies { get; } = new Bindable<bool>();
|
|
}
|
|
}
|