Split out individual pieces into own files

This commit is contained in:
Dean Herbert
2021-10-21 16:54:32 +09:00
parent 32d01f022f
commit b73bd54ab2
5 changed files with 64 additions and 44 deletions

View File

@ -0,0 +1,11 @@
// 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.
namespace osu.Game.Beatmaps
{
public class BeatmapSetOnlineLanguage
{
public int Id { get; set; }
public string Name { get; set; }
}
}