Cleanup room definition

This commit is contained in:
smoogipoo
2018-12-17 14:45:06 +09:00
parent cc68cf2f95
commit 7c4fd8ca60
3 changed files with 127 additions and 101 deletions

View File

@ -0,0 +1,12 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Mods;
namespace osu.Game.Online.API.Requests.Responses
{
public class APIMod : IMod
{
public string Acronym { get; set; }
}
}