1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 19:47:19 +08:00
osu-lazer/osu.Game/Beatmaps/BeatmapSetFileInfo.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
794 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
2017-10-04 22:52:12 +03:00
using System.ComponentModel.DataAnnotations;
using osu.Game.Database;
using osu.Game.IO;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Beatmaps
{
public class BeatmapSetFileInfo : INamedFileInfo, IHasPrimaryKey, INamedFileUsage
{
2017-10-14 14:28:25 +09:00
public int ID { get; set; }
2018-04-13 18:19:50 +09:00
public bool IsManaged => ID > 0;
2017-10-14 14:28:25 +09:00
public int BeatmapSetInfoID { get; set; }
2018-04-13 18:19:50 +09:00
public EFBeatmapSetInfo BeatmapSetInfo { get; set; }
2017-10-14 14:28:25 +09:00
public int FileInfoID { get; set; }
2018-04-13 18:19:50 +09:00
public FileInfo FileInfo { get; set; }
2018-04-13 18:19:50 +09:00
2017-10-04 22:52:12 +03:00
[Required]
public string Filename { get; set; }
IFileInfo INamedFileUsage.File => FileInfo;
}
2017-10-04 22:52:12 +03:00
}