11 lines
247 B
C#
11 lines
247 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using System;
|
|
|
|
namespace StructureHelperCommon.Models.Materials.Libraries
|
|
{
|
|
public interface IPartialFactor : ISaveable, ICloneable
|
|
{
|
|
double FactorValue {get;set;}
|
|
}
|
|
}
|