mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 03:27:25 +08:00
20 lines
491 B
C#
20 lines
491 B
C#
|
using System;
|
|||
|
using SQLite.Net.Attributes;
|
|||
|
using SQLiteNetExtensions.Attributes;
|
|||
|
|
|||
|
namespace osu.Game.Database
|
|||
|
{
|
|||
|
public class BeatmapSetInfo
|
|||
|
{
|
|||
|
[PrimaryKey]
|
|||
|
public int BeatmapSetID { get; set; }
|
|||
|
[OneToOne]
|
|||
|
public BeatmapMetadata Metadata { get; set; }
|
|||
|
[NotNull, ForeignKey(typeof(BeatmapMetadata))]
|
|||
|
public int BeatmapMetadataID { get; set; }
|
|||
|
public string Hash { get; set; }
|
|||
|
public string Path { get; set; }
|
|||
|
}
|
|||
|
}
|
|||
|
|