Working communication via kafka

This commit is contained in:
2024-06-14 09:48:52 -05:00
parent d0f1e5bc22
commit 947bf35cf6
6 changed files with 120 additions and 4 deletions

View File

@ -0,0 +1,18 @@
namespace Model
{
public class DataModel
{
public DataModel(string id)
{
this.id = id;
}
public string id { get; set; }
public string? name { get; set; }
public string? description { get; set; }
public string? notes { get; set; }
}
}