2019-01-24 17:43:03 +09:00
|
|
|
// 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-11-28 16:39:08 +09:00
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2018-11-28 16:39:08 +09:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using osu.Game.Database;
|
|
|
|
using osu.Game.IO;
|
|
|
|
|
|
|
|
namespace osu.Game.Scoring
|
|
|
|
{
|
2021-11-25 16:35:42 +09:00
|
|
|
public class ScoreFileInfo : INamedFileInfo, IHasPrimaryKey, INamedFileUsage
|
2018-11-28 16:39:08 +09:00
|
|
|
{
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
2021-11-19 21:53:40 +09:00
|
|
|
public bool IsManaged => ID > 0;
|
|
|
|
|
2021-12-15 00:31:35 +09:00
|
|
|
public int ScoreInfoID { get; set; }
|
|
|
|
|
|
|
|
public EFScoreInfo ScoreInfo { get; set; }
|
|
|
|
|
2018-11-28 16:39:08 +09:00
|
|
|
public int FileInfoID { get; set; }
|
|
|
|
|
|
|
|
public FileInfo FileInfo { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
public string Filename { get; set; }
|
2021-11-25 16:35:42 +09:00
|
|
|
|
|
|
|
IFileInfo INamedFileUsage.File => FileInfo;
|
2018-11-28 16:39:08 +09:00
|
|
|
}
|
|
|
|
}
|