DeviceMessages endpoint
This commit is contained in:
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user