DocSpace-buildtools/common/ASC.Core.Common/Tenants/TenantQuotaRow.cs

11 lines
246 B
C#

namespace ASC.Core.Tenants;
[Serializable]
public class TenantQuotaRow : IMapFrom<DbQuotaRow>
{
public int Tenant { get; set; }
public string Path { get; set; }
public long Counter { get; set; }
public string Tag { get; set; }
}