Remove VideoFile from BeatmapMetadata

Leaving in database because it's a pain to drop columns.
This commit is contained in:
Dean Herbert 2020-03-25 11:59:59 +09:00
parent 6d81da5419
commit f2e0fba164
1 changed files with 1 additions and 3 deletions

View File

@ -52,7 +52,6 @@ public string AuthorString
public int PreviewTime { get; set; }
public string AudioFile { get; set; }
public string BackgroundFile { get; set; }
public string VideoFile { get; set; }
public override string ToString() => $"{Artist} - {Title} ({Author})";
@ -82,8 +81,7 @@ public bool Equals(BeatmapMetadata other)
&& Tags == other.Tags
&& PreviewTime == other.PreviewTime
&& AudioFile == other.AudioFile
&& BackgroundFile == other.BackgroundFile
&& VideoFile == other.VideoFile;
&& BackgroundFile == other.BackgroundFile;
}
}
}