mirror of
https://github.com/osukey/osukey.git
synced 2025-06-25 05:07:59 +09: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; }
|
|
}
|
|
}
|
|
|