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