| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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; }
- /// <summary>
- /// Determines the initial percentage value
- /// </summary>
- public decimal InitialPercentage { get; set; }
- }
- }
|