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
{
///
/// Description
///
public string Description { get; set; }
///
/// Color Hex-Code
///
public string HexColor { get; set; }
///
/// Determines if this state sets the value of the appendix to zero
///
public bool IsZeroValue { get; set; }
///
/// Determines if this state is defaultly selected
///
public bool IsDefault { get; set; }
///
/// Determines if this state is the final state
///
public bool IsFinish { get; set; }
///
/// Determines the initial percentage value
///
public decimal InitialPercentage { get; set; }
}
}