sharp-chat/SharpChatCommon/Events/ChatEventData.cs

9 lines
201 B
C#
Raw Permalink Normal View History

2024-05-24 03:44:20 +00:00
using System.Text.Json.Serialization;
namespace SharpChat.Events {
public class ChatEventData {
[JsonIgnore]
public static readonly ChatEventData EmptyInstance = new();
}
}