using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Domain.Invoice { public class Invoice : BaseEntity { /// /// Customized number for identification /// public int CustomNumber { get; set; } /// /// Monetary value /// public decimal Value { get; set; } /// /// Invoice date /// public DateTime Date { get; set; } /// /// Id of the related appendix /// public int? AppendixId { get; set; } /// /// Appendix related to the invoice /// public Appendix.Appendix Appendix { get; set; } } }