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
{
///
/// Description
///
public string Description { get; set; }
///
/// Determines if this state is defaultly selected
///
public bool IsDefault { get; set; }
///
/// Determines if this state sets the value of the deviation to zero
///
public bool IsZeroValue { get; set; }
///
/// Determines if this state sets the value of the deviation to zero for summarize
///
public bool IsZeroSummarize { get; set; }
}
}