1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 10:33:30 +08:00

Add JsonIgnore rule for StoryboardFile

Not sure why this is required, doesn't make much sense.
This commit is contained in:
Dean Herbert 2021-10-02 03:05:04 +09:00
parent 0daf8937e3
commit dcd7d7a709

View File

@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using JetBrains.Annotations;
using Newtonsoft.Json;
using osu.Framework.Testing;
using osu.Game.Database;
@ -61,6 +62,7 @@ namespace osu.Game.Beatmaps
public string Hash { get; set; }
[JsonIgnore]
public string StoryboardFile => ((IBeatmapSetInfo)this).StoryboardFile;
/// <summary>