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

18 lines
441 B
C#
Raw Normal View History

2019-12-02 09:12:16 +00:00
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; }
}
}