mirror of
https://github.com/ppy/osu
synced 2024-12-14 19:06:07 +00:00
15 lines
252 B
C#
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; }
|
|
}
|
|
}
|
|
|