first commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Kafka.Lib;
|
||||
|
||||
public interface IMessageType
|
||||
{
|
||||
public string? Id { get; set; }
|
||||
public string? EventType { get; }
|
||||
|
||||
[JsonIgnore]
|
||||
public string Text { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user