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

18 lines
425 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")]
public class DbWebstudioIndex
{
[Key]
[Column("index_name")]
public string IndexName { get; set; }
[Column("last_modified")]
public DateTime LastModified { get; set; }
}
}