10 lines
261 B
C#
10 lines
261 B
C#
using StructureHelperCommon.Models.Materials.Libraries;
|
|
using System.Collections.Generic;
|
|
|
|
namespace StructureHelperLogics.Models.Materials
|
|
{
|
|
public interface IHasSafetyFactors
|
|
{
|
|
List<IMaterialSafetyFactor> SafetyFactors { get; set; }
|
|
}
|
|
} |