mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
26 lines
865 B
C#
26 lines
865 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using SQLite.Net.Attributes;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class BeatmapMetadata
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int ID { get; set; }
|
|
|
|
public int? OnlineBeatmapSetID { 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; }
|
|
}
|
|
} |