using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
///
/// Implement effective depth for reinforced concrete section
///
public interface IEffectiveDepth
{
///
/// Full depth of cross-section
///
double FullDepth { get; set; }
///
/// Effective depth of cross-section
///
double EffectiveDepth { get; set; }
}
}