21 lines
589 B
C#
21 lines
589 B
C#
using StructureHelperCommon.Models.Shapes;
|
|
using StructureHelperLogics.Models.Templates.CrossSections.RCs;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.Models.Templates.RCs
|
|
{
|
|
public interface IRectangleBeamTemplate : IRCSectionTemplate
|
|
{
|
|
IShape Shape { get; }
|
|
double CoverGap { get; set; }
|
|
double TopDiameter { get; set; }
|
|
double BottomDiameter { get; set; }
|
|
int WidthCount { get; set; }
|
|
int HeightCount { get; set; }
|
|
}
|
|
}
|