DocSpace-buildtools/common/ASC.Core.Common/EF/Model/Feed/FeedLast.cs
2020-02-21 15:38:04 +03:00

20 lines
487 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model
{
[Table("feed_last")]
public class FeedLast : BaseEntity
{
[Key]
[Column("last_key")]
public string LastKey { get; set; }
[Column("last_date")]
public DateTime LastDate { get; set; }
public override object[] GetKeys() => new object[] { LastKey };
}
}