8 lines
201 B
C#
8 lines
201 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SharpChat.Events {
|
|
public class ChatEventData {
|
|
[JsonIgnore]
|
|
public static readonly ChatEventData EmptyInstance = new();
|
|
}
|
|
}
|