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

21 lines
560 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("core_group")]
public class DbGroup
{
public int Tenant { get; set; }
public Guid Id { get; set; }
public string Name { get; set; }
public Guid CategoryId { get; set; }
public Guid ParentId { get; set; }
public string Sid { get; set; }
public bool Removed { get; set; }
[Column("last_modified")]
public DateTime LastModified { get; set; }
}
}