| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core.Domain.Deviation
- {
- public class Status : BaseEntity
- {
- /// <summary>
- /// Description
- /// </summary>
- public string Description { get; set; }
- /// <summary>
- /// Determines if this state is defaultly selected
- /// </summary>
- public bool IsDefault { get; set; }
- /// <summary>
- /// Determines if this state sets the value of the deviation to zero
- /// </summary>
- public bool IsZeroValue { get; set; }
- /// <summary>
- /// Determines if this state sets the value of the deviation to zero for summarize
- /// </summary>
- public bool IsZeroSummarize { get; set; }
- }
- }
|