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

32 lines
872 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("tenants_quota")]
public class DbQuota
{
[Key]
public int Tenant { get; set; }
public string Name { get; set; }
public string Description { get; set; }
[Column("max_file_size")]
public long MaxFileSize { get; set; }
[Column("max_total_size")]
public long MaxTotalSize { get; set; }
[Column("active_users")]
public int ActiveUsers { get; set; }
public string Features { get; set; }
public decimal Price { get; set; }
public decimal Price2 { get; set; }
[Column("avangate_id")]
public string AvangateId { get; set; }
public bool Visible { get; set; }
}
}