2016-09-20 15:30:03 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-10-05 04:29:08 +08:00
|
|
|
|
using osu.Game.GameModes.Play;
|
2016-10-08 01:50:34 +08:00
|
|
|
|
using SQLite;
|
2016-10-05 04:29:08 +08:00
|
|
|
|
|
2016-09-20 15:30:03 +08:00
|
|
|
|
namespace osu.Game.Beatmaps
|
2016-08-31 12:52:30 +08:00
|
|
|
|
{
|
2016-10-08 01:50:34 +08:00
|
|
|
|
public class BeatmapMetadata
|
2016-08-31 12:52:30 +08:00
|
|
|
|
{
|
2016-10-08 01:50:34 +08:00
|
|
|
|
[PrimaryKey]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
2016-10-05 04:29:08 +08:00
|
|
|
|
public int BeatmapSetID { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string TitleUnicode { get; set; }
|
|
|
|
|
public string Artist { get; set; }
|
|
|
|
|
public string ArtistUnicode { get; set; }
|
|
|
|
|
public string Author { get; set; }
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
public string Tags { get; set; }
|
|
|
|
|
public int PreviewTime { get; set; }
|
|
|
|
|
public string AudioFile { get; set; }
|
|
|
|
|
public string BackgroundFile { get; set; }
|
2016-08-31 12:52:30 +08:00
|
|
|
|
}
|
|
|
|
|
}
|