Add function material interface and button

This commit is contained in:
Иван Ивашкин
2025-01-28 14:31:34 +05:00
parent ceefe3dbca
commit 4ec3ef25fb
8 changed files with 199 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.Materials
{
internal interface IFunctionMaterial : IHelperMaterial
{
}
}