1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-08 10:23:18 +08:00
osu-lazer/osu.Game/Database/BeatmapSet.cs

15 lines
252 B
C#
Raw Normal View History

2016-10-04 23:31:10 +08:00
using System;
using SQLite;
namespace osu.Game.Database
{
public class BeatmapSet
{
[PrimaryKey]
public int BeatmapSetID { get; set; }
[NotNull, Indexed]
2016-10-05 02:04:10 +08:00
public int BeatmapMetadataID { get; set; }
2016-10-04 23:31:10 +08:00
}
}