mirror of
https://github.com/ppy/osu.git
synced 2025-02-08 13:52:58 +08:00
15 lines
245 B
C#
15 lines
245 B
C#
|
using System;
|
|||
|
using SQLite;
|
|||
|
|
|||
|
namespace osu.Game.Database
|
|||
|
{
|
|||
|
public class BeatmapSet
|
|||
|
{
|
|||
|
[PrimaryKey]
|
|||
|
public int BeatmapSetID { get; set; }
|
|||
|
[NotNull, Indexed]
|
|||
|
public int MetadataID { get; set; }
|
|||
|
}
|
|||
|
}
|
|||
|
|