using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Domain.Appendix { public class CategoryValue : BaseEntity { /// /// Id of corresponding category /// public int? CategoryId { get; set; } /// /// Corresponding category /// public virtual Category Category { get; set; } /// /// Monetary value /// public decimal Value { get; set; } } }