Remotely/Shared/Models/Alert.cs
2021-07-29 07:57:38 -07:00

31 lines
855 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace Remotely.Shared.Models
{
public class Alert
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public string ID { get; set; }
public DateTimeOffset CreatedOn { get; set; } = DateTimeOffset.Now;
[JsonIgnore]
public Device Device { get; set; }
public string DeviceID { get; set; }
public string Message { get; set; }
[JsonIgnore]
public Organization Organization { get; set; }
public string OrganizationID { get; set; }
[JsonIgnore]
public RemotelyUser User { get; set; }
public string UserID { get; set; }
public string Details { get; set; }
}
}