DocSpace-buildtools/common/ASC.Core.Common/EF/Model/FeedLast.cs

18 lines
399 B
C#
Raw Normal View History

2019-12-09 11:59:22 +00:00
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model
{
[Table("feed_last")]
public class FeedLast
{
[Key]
[Column("last_key")]
public string LastKey { get; set; }
[Column("last_date")]
public DateTime LastDate { get; set; }
}
}