Files
StructureHelper/StructureHelperCommon/Models/Forces/IFileProperty.cs
2025-01-18 22:13:11 +05:00

10 lines
232 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using System;
namespace StructureHelperCommon.Models.Forces
{
public interface IFileProperty : ISaveable, ICloneable
{
string FilePath { get; set; }
}
}