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

18 lines
514 B
C#
Raw Normal View History

2019-12-16 09:30:01 +00:00
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model.Resource
{
[Table("res_files")]
public class ResFiles
{
public int Id { get; set; }
public string ProjectName { get; set; }
public string ModuleName { get; set; }
public string ResName { get; set; }
public bool IsLock { get; set; }
public DateTime LastUpdate { get; set; }
public DateTime CreationDate { get; set; }
}
}