DeviceMessages endpoint

This commit is contained in:
2025-04-05 14:53:14 +02:00
parent 4951fc0c7a
commit 8dc13c702c
15 changed files with 1212 additions and 11 deletions
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.DL.Entities
{
public class DeviceMessage
{
public int Id { get; set; }
public DateTime SendDate { get; set; }
public DateTime? ReceiveDate { get; set; }
public string DeviceIdFrom { get; set; } = null!;
public string DeviceIdTo { get; set; } = null!;
public string Message { get; set; } = null!;
public string ExtraDataJSON { get; set; } = null!;
public bool IsReaded { get; set; }
}
}