| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core.Domain.Appendix
- {
- public class State : BaseEntity
- {
- /// <summary>
- /// Description
- /// </summary>
- public string Description { get; set; }
- /// <summary>
- /// Color Hex-Code
- /// </summary>
- public string HexColor { get; set; }
- /// <summary>
- /// Determines if this state sets the value of the appendix to zero
- /// </summary>
- public bool IsZeroValue { get; set; }
- /// <summary>
- /// Determines if this state is defaultly selected
- /// </summary>
- public bool IsDefault { get; set; }
- /// <summary>
- /// Determines if this state is the final state
- /// </summary>
- public bool IsFinish { get; set; }
- }
- }
|