Files
StructureHelper/StructureHelperLogics/Models/Materials/IFunctionMaterial.cs
2025-01-28 14:31:34 +05:00

14 lines
245 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Materials
{
internal interface IFunctionMaterial : IHelperMaterial
{
}
}