DocSpace-client/common/ASC.Core.Common/EF/Model/Tenant/DbTariff.cs

23 lines
554 B
C#
Raw Normal View History

2019-11-29 12:26:53 +00:00
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("tenants_tariff")]
2019-12-02 12:22:40 +00:00
public class DbTariff
2019-11-29 12:26:53 +00:00
{
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; }
}
}