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

11 lines
246 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Core.Tenants;
[Serializable]
public class TenantQuotaRow : IMapFrom<DbQuotaRow>
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
public int Tenant { get; set; }
public string Path { get; set; }
public long Counter { get; set; }
public string Tag { get; set; }
}