DocSpace-client/common/ASC.Core.Common/EF/Model/DbWebstudioIndex.cs

23 lines
547 B
C#
Raw Normal View History

2020-01-24 13:07:51 +00:00
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model
{
[Table("webstudio_index")]
2020-04-27 16:59:52 +00:00
public class DbWebstudioIndex : BaseEntity
2020-01-24 13:07:51 +00:00
{
[Key]
[Column("index_name")]
public string IndexName { get; set; }
[Column("last_modified")]
public DateTime LastModified { get; set; }
2020-04-27 16:59:52 +00:00
2020-09-30 14:47:42 +00:00
public override object[] GetKeys()
{
return new[] { IndexName };
}
2020-01-24 13:07:51 +00:00
}
}