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

23 lines
554 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("tenants_tariff")]
public class DbTariff
{
public int Id { get; set; }
public int Tenant { get; set; }
public int Tariff { get; set; }
public DateTime Stamp { get; set; }
[Column("tariff_key")]
public string TariffKey { get; set; }
public string Comment { get; set; }
[Column("create_on")]
public DateTime CreateOn { get; set; }
}
}