Files
2025-08-13 09:26:42 +08:00

19 lines
236 B
C#

using System;
namespace MoleMole
{
[Serializable]
public class Notify
{
public NotifyTypes type;
public object body;
public Notify(NotifyTypes type, object body = null)
{
this.type = type;
this.body = body;
}
}
}