16 lines
377 B
C#
16 lines
377 B
C#
using StructureHelperLogics.Models.Primitives;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Primitives
|
|
{
|
|
public interface IHasDivisionSize : INdmPrimitive
|
|
{
|
|
double NdmMaxSize { get; set; }
|
|
int NdmMinDivision { get; set; }
|
|
}
|
|
}
|