DocSpace-client/common/ASC.Core.Common/EF/Model/Tenant/DbQuotaRow.cs
2019-12-12 18:33:48 +03:00

18 lines
441 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("tenants_quotarow")]
public class DbQuotaRow
{
public int Tenant { get; set; }
public string Path { get; set; }
public long Counter { get; set; }
public string Tag { get; set; }
[Column("last_modified")]
public DateTime LastModified { get; set; }
}
}