Files
StructureHelper/StructureHelperLogics/Models/Templates/CrossSections/RCs/IRCGeometryLogic.cs
2022-12-22 11:42:32 +05:00

15 lines
368 B
C#

using StructureHelper.Models.Materials;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Templates.CrossSections.RCs
{
public interface IRCGeometryLogic : ISectionGeometryLogic
{
IEnumerable<IHeadMaterial> HeadMaterials { get; set; }
}
}