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; }
}
}