24 lines
576 B
C#
24 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
using Volo.Abp.MultiTenancy;
|
|
|
|
namespace Erp.Platform.Entities;
|
|
|
|
public class DeliveryTerm : FullAuditedEntity<string>, IMultiTenant
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public ICollection<Quotation> Quotations { get; set; }
|
|
public ICollection<SalesOrder> SalesOrders { get; set; }
|
|
|
|
public DeliveryTerm(string id)
|
|
{
|
|
Id = id;
|
|
}
|
|
}
|