mirror of
https://github.com/ppy/osu
synced 2025-03-19 09:34:49 +00:00
give the object a default value(null).
This commit is contained in:
parent
13b2441c51
commit
c8c2758d63
@ -47,7 +47,7 @@ namespace osu.Desktop.LegacyIpc
|
|||||||
public class Data
|
public class Data
|
||||||
{
|
{
|
||||||
public string MessageType { get; set; } = string.Empty;
|
public string MessageType { get; set; } = string.Empty;
|
||||||
public object MessageData { get; set; }
|
public object MessageData { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user