using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Primitives
{
///
public class DivisionSize : IDivisionSize
{
public Guid Id { get; }
///
public double NdmMaxSize { get; set; } = 0.01d;
///
public int NdmMinDivision { get; set; } = 10;
///
public bool ClearUnderlying { get; set; } = false;
public DivisionSize(Guid id)
{
Id = id;
}
}
}