2017-02-07 13:59:30 +09:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-20 16:30:03 +09:00
|
|
|
|
|
2016-10-18 13:35:01 -04:00
|
|
|
|
using SQLite.Net.Attributes;
|
2016-10-04 16:29:08 -04:00
|
|
|
|
|
2016-10-18 13:35:01 -04:00
|
|
|
|
namespace osu.Game.Database
|
2016-08-31 13:52:30 +09:00
|
|
|
|
{
|
2016-10-07 13:50:34 -04:00
|
|
|
|
public class BeatmapMetadata
|
2016-08-31 13:52:30 +09:00
|
|
|
|
{
|
2016-10-19 10:31:10 -04:00
|
|
|
|
[PrimaryKey, AutoIncrement]
|
2016-10-07 13:50:34 -04:00
|
|
|
|
public int ID { get; set; }
|
2016-12-21 14:47:56 +08:00
|
|
|
|
|
2017-01-09 21:05:01 +08:00
|
|
|
|
public int? OnlineBeatmapSetID { get; set; } = null;
|
2016-12-21 14:47:56 +08:00
|
|
|
|
|
2016-10-04 16:29:08 -04:00
|
|
|
|
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 13:52:30 +09:00
|
|
|
|
}
|
|
|
|
|
}
|