17 lines
488 B
C#
17 lines
488 B
C#
using Complex.Domain.Commons;
|
|
|
|
namespace Complex.Domain.Entities
|
|
{
|
|
[Auditable]
|
|
public class UnitCost : BaseEntity<long>
|
|
{
|
|
public Guid CostCycleId { set; get; }
|
|
public virtual CostCycle CostCycle { set; get; }
|
|
public Guid UnitId { get; set; }
|
|
public virtual Unit Unit { get; set; }
|
|
public virtual Transaction Transaction { get; set; }
|
|
public int? TransactionId { get; set; }
|
|
public DateOnly Date { set; get; }
|
|
}
|
|
}
|