9a281238e9
All checks were successful
Unit tests / test (push) Successful in 1m14s
Удалена папка Models из проекта DD.Persistence
10 lines
200 B
C#
10 lines
200 B
C#
namespace DD.Persistence.Models;
|
|
public interface IWithSectionPart
|
|
{
|
|
public double DepthStart { get; set; }
|
|
|
|
public double DepthEnd { get; set; }
|
|
|
|
public Guid IdSection { get; set; }
|
|
}
|