Files
osu-framework/osu.Framework/Platform/IpcMessage.cs
2022-06-13 21:57:05 +09:00

14 lines
332 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable disable
namespace osu.Framework.Platform
{
public class IpcMessage
{
public string Type { get; set; }
public object Value { get; set; }
}
}