Files
StructureHelper/StructureHelperCommon/Models/Materials/Libraries/IPartialFactor.cs
2023-01-08 14:11:16 +05:00

14 lines
282 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Materials.Libraries
{
public interface IPartialFactor : ICloneable
{
double FactorValue {get;set;}
}
}