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