osu/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 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2017-10-04 19:52:12 +00:00
using System.ComponentModel.DataAnnotations;
using osu.Game.Database;
using osu.Game.IO;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Beatmaps
{
public class BeatmapSetFileInfo : INamedFileInfo, IHasPrimaryKey, INamedFileUsage
{
2017-10-14 05:28:25 +00:00
public int ID { get; set; }
2018-04-13 09:19:50 +00:00
public bool IsManaged => ID > 0;
2017-10-14 05:28:25 +00:00
public int BeatmapSetInfoID { get; set; }
2018-04-13 09:19:50 +00:00
public EFBeatmapSetInfo BeatmapSetInfo { get; set; }
2017-10-14 05:28:25 +00:00
public int FileInfoID { get; set; }
2018-04-13 09:19:50 +00:00
public FileInfo FileInfo { get; set; }
2018-04-13 09:19:50 +00:00
2017-10-04 19:52:12 +00:00
[Required]
public string Filename { get; set; }
IFileInfo INamedFileUsage.File => FileInfo;
}
2017-10-04 19:52:12 +00:00
}