persistence/DD.Persistence.Models/IWithSectionPart.cs

10 lines
200 B
C#
Raw Normal View History

namespace DD.Persistence.Models;
public interface IWithSectionPart
{
public double DepthStart { get; set; }
public double DepthEnd { get; set; }
public Guid IdSection { get; set; }
}