1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 06:42:54 +08:00
osu-lazer/osu.Game/Beatmaps/BeatmapMetadata.cs

46 lines
1.3 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-10-05 03:52:12 +08:00
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using Newtonsoft.Json;
2017-07-26 12:22:46 +08:00
namespace osu.Game.Beatmaps
{
public class BeatmapMetadata
{
2017-10-06 05:23:26 +08:00
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
2017-10-05 03:52:12 +08:00
public int Id { get; set; }
2016-12-21 14:47:56 +08:00
2017-10-09 05:30:52 +08:00
[NotMapped]
2017-10-05 03:52:12 +08:00
public int? BeatmapSetOnlineInfoId { get; set; }
2016-12-21 14:47:56 +08:00
public string Title { get; set; }
public string TitleUnicode { get; set; }
public string Artist { get; set; }
public string ArtistUnicode { get; set; }
[JsonProperty(@"creator")]
public string Author { get; set; }
public string Source { get; set; }
2017-06-07 22:30:52 +08:00
[JsonProperty(@"tags")]
public string Tags { get; set; }
public int PreviewTime { get; set; }
public string AudioFile { get; set; }
public string BackgroundFile { get; set; }
public string[] SearchableTerms => new[]
{
Author,
Artist,
ArtistUnicode,
Title,
TitleUnicode,
Source,
Tags
}.Where(s => !string.IsNullOrEmpty(s)).ToArray();
}
}