DocSpace-buildtools/common/ASC.Core.Common/EF/Model/Notify/NotifyInfo.cs
2019-12-12 18:33:48 +03:00

21 lines
532 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model
{
[Table("notify_info")]
public class NotifyInfo
{
[Key]
[Column("notify_id")]
public int NotifyId { get; set; }
public int State { get; set; }
public int Attempts { get; set; }
[Column("modify_date")]
public DateTime ModifyDate { get; set; }
public int Priority { get; set; }
}
}