osu/osu.Game/Beatmaps/BeatmapSetFileInfo.cs

26 lines
662 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
using System.ComponentModel.DataAnnotations;
using osu.Game.Database;
using osu.Game.IO;
namespace osu.Game.Beatmaps
{
public class BeatmapSetFileInfo : INamedFileInfo, IHasPrimaryKey, INamedFileUsage
2018-04-13 09:19:50 +00:00
{
public int ID { get; set; }
public int BeatmapSetInfoID { get; set; }
public int FileInfoID { get; set; }
public FileInfo FileInfo { get; set; }
[Required]
public string Filename { get; set; }
public IFileInfo File => FileInfo;
2018-04-13 09:19:50 +00:00
}
}