namespace StructureHelperLogics.Models.BeamShears
{
public interface IHasStartEndCoordinate
{
///
/// Coordinate of start of zone of stirrups
///
double StartCoordinate { get; set; }
///
/// Coordinate of end of zone of stirrups
///
double EndCoordinate { get; set; }
}
}