using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Domain.Deviation { public class Deviation : BaseEntity { /// /// Id of corresponding Appendix /// public int AppendixId { get; set; } /// /// Id of the current deviation status /// public int StatusId { get; set; } /// /// Current deviation status /// public Status Status { get; set; } /// /// Id of the current deviation disturbance /// public int DisturbanceId { get; set; } /// /// Current deviation disturbance /// public Disturbance Disturbance { get; set; } /// /// Id of the current deviation kind /// public int KindId { get; set; } /// /// Current deviation kind /// public Kind Kind { get; set; } /// /// Customized number for identification /// public int CustomNumber { get; set; } /// /// Date when deviation were created /// public DateTime ReceiptDate { get; set; } /// /// Editable comment /// public string Comment { get; set; } /// /// Monetary value /// public decimal Value { get; set; } } }