Files
StructureHelper/StructureHelperCommon/Models/Forces/IAction.cs
2023-03-05 19:50:24 +05:00

14 lines
245 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
public interface IAction
{
string Name { get; set; }
}
}