1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-08 08:03:09 +08:00
osu-lazer/osu.Game/Database/BeatmapSet.cs
2016-10-10 09:17:56 -04:00

15 lines
252 B
C#

using System;
using SQLite;
namespace osu.Game.Database
{
public class BeatmapSet
{
[PrimaryKey]
public int BeatmapSetID { get; set; }
[NotNull, Indexed]
public int BeatmapMetadataID { get; set; }
}
}