10 lines
212 B
C#
10 lines
212 B
C#
namespace DD.Persistence.ModelsAbstractions;
|
|
public interface IWithSectionPart
|
|
{
|
|
public double DepthStart { get; set; }
|
|
|
|
public double DepthEnd { get; set; }
|
|
|
|
public Guid IdSection { get; set; }
|
|
}
|