10 lines
232 B
C#
10 lines
232 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using System;
|
|
|
|
namespace StructureHelperCommon.Models.Forces
|
|
{
|
|
public interface IFileProperty : ISaveable, ICloneable
|
|
{
|
|
string FilePath { get; set; }
|
|
}
|
|
} |