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 is defaultly selected
///
public bool IsDefault { get; set; }
}
}