persistence/DD.Persistence/ModelsAbstractions/IWithSectionPart.cs

10 lines
212 B
C#
Raw Normal View History

2025-01-13 17:45:49 +05:00
namespace DD.Persistence.ModelsAbstractions;
public interface IWithSectionPart
{
public double DepthStart { get; set; }
public double DepthEnd { get; set; }
public Guid IdSection { get; set; }
}