9 lines
206 B
C#
9 lines
206 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
|
|
namespace StructureHelperCommon.Models.Forces
|
|
{
|
|
public interface IFileProperty : ISaveable
|
|
{
|
|
string FilePath { get; set; }
|
|
}
|
|
} |