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