give the field a default value.

This commit is contained in:
andy840119
2022-08-02 22:29:27 +08:00
parent 11a4bb5833
commit 13b2441c51
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ namespace osu.Desktop.LegacyIpc
/// </remarks>
public class LegacyIpcDifficultyCalculationRequest
{
public string BeatmapFile { get; set; }
public string BeatmapFile { get; set; } = string.Empty;
public int RulesetId { get; set; }
public int Mods { get; set; }
}