24 lines
706 B
C#
24 lines
706 B
C#
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; }
|
|
public int? RoleId { get; set; }
|
|
public virtual Role? Role { get; set; }
|
|
|
|
}
|
|
}
|