14 lines
392 B
C#
14 lines
392 B
C#
namespace StructureHelperLogics.Models.BeamShears
|
|
{
|
|
public interface IHasStartEndCoordinate
|
|
{
|
|
/// <summary>
|
|
/// Coordinate of start of zone of stirrups
|
|
/// </summary>
|
|
double StartCoordinate { get; set; }
|
|
/// <summary>
|
|
/// Coordinate of end of zone of stirrups
|
|
/// </summary>
|
|
double EndCoordinate { get; set; }
|
|
}
|
|
} |