17 lines
379 B
C#
17 lines
379 B
C#
using StructureHelperCommon.Models.Analyses;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.Models.Analyses
|
|
{
|
|
/// <summary>
|
|
/// Implemants properties for analysis of beam for shear
|
|
/// </summary>
|
|
public interface IBeamShearAnalysis : IAnalysis
|
|
{
|
|
}
|
|
}
|