Files
StructureHelper/StructureHelperCommon/Models/Forces/IAction.cs
2023-07-09 19:46:36 +05:00

15 lines
325 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
public interface IAction : ISaveable, ICloneable
{
string Name { get; set; }
}
}