mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:07:25 +08:00
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Collections.Generic;
|
|
using SQLite.Net.Attributes;
|
|
using SQLiteNetExtensions.Attributes;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public class BeatmapSetInfo
|
|
{
|
|
[PrimaryKey, AutoIncrement]
|
|
public int ID { get; set; }
|
|
|
|
public int? OnlineBeatmapSetID { get; set; } = null;
|
|
|
|
[OneToOne(CascadeOperations = CascadeOperation.All)]
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
[NotNull, ForeignKey(typeof(BeatmapMetadata))]
|
|
public int BeatmapMetadataID { get; set; }
|
|
|
|
[OneToMany(CascadeOperations = CascadeOperation.All)]
|
|
public List<BeatmapInfo> Beatmaps { get; set; }
|
|
|
|
public bool DeletePending { get; set; }
|
|
|
|
public string Hash { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
|
|
public string StoryboardFile { get; set; }
|
|
}
|
|
}
|
|
|